点击按钮相关问题
小应用程序有一个按钮和一个文本区,按钮作为发生键盘事件的事件源,并对键盘事件实施监视。程序运行时,先点击按钮,让按钮激活。以后输入英文字母时,在文本区显示输入的字母。
代码如下:已测试通过
import java.applet.*; import javax.swing.*; import java.awt.event.*;
public class t extends Applet implements KeyListener {
JButton button = new JButton();
JTextArea text = new JTextArea(5, 20);
public void init(){
button.addKeyListener(this);
add(button);
add(text);
}
public void keyPressed(KeyEvent e){
int t = e. getKeyCode();
if(t>= KeyEvent.VK_A &&t<= KeyEvent.VK_Z){
text.append((char)t+" ");
}
}
public void keyTyped(KeyEvent e){ }
public void keyReleased(KeyEvent e){ }
}
问题:处理“点击按钮”的代码段在哪?我找不到。
[解决办法]
implements KeyListener 你查查api 关于KeyListener 这个接口是怎么实现的
[解决办法]
怎么处理按钮点击事件这个任何一本Java基础书上都会讲的吧
button.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
setBackground(backgroundColor);
}
});