9
可能重複清除了JTextField:
JButton needs to change JTextfield text如何通過點擊一個JButton
如何清除JTextField
點擊一個JButton
什麼時候?
可能重複清除了JTextField:
JButton needs to change JTextfield text如何通過點擊一個JButton
如何清除JTextField
點擊一個JButton
什麼時候?
尋找EventHandling,ActionListener?
或代碼?
JButton b = new JButton("Clear");
b.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
textfield.setText("");
//textfield.setText(null); //or use this
}
});
非常感謝。 – Monte 2011-03-16 22:53:43
看答案在以前的評論鏈接的問題。您可以通過將文本設置爲空字符串來清除文本。 – 2011-03-16 17:14:06