日期:2014-05-20  浏览次数:20632 次

求助!!!鼠标响应键盘不响应
public DrawPanel()
{
this.addMouseListener(this);
this.addMouseMotionListener(this);
//**************************
this.addKeyListener(this);
// this.addFocusListener(this);
}
添加了键盘和鼠标监听。。。但是只响应鼠标。。不响应键盘。。。keyPressed方法完全没有调用。。。我刚接触java基本什么都不懂。。请大侠帮帮忙。。。非常感谢

------解决方案--------------------
该控件未获得焦点
在鼠标按下事件中,强制该控件获得焦点

有焦点的控件才能响应键盘事件