文件名称://响应文本事件-JAVA自学教程(史上最全)
文件大小:9.22MB
文件格式:PPT
更新时间:2024-05-15 17:03:54
JAVA
//响应文本事件 public void textValueChanged(TextEvent e) { if(e.getSource() == tOld) tNew.setText(tOld.getText()); } //响应动作事件 public void actionPerformed(ActionEvent e) { if(e.getSource() == tOld) tNew.setText(""); } };