首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

!鼠标响应键盘不响应

2012-01-12 
求助!!!鼠标响应键盘不响应public DrawPanel(){this.addMouseListener(this)this.addMouseMotionListener

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

[解决办法]
该控件未获得焦点
在鼠标按下事件中,强制该控件获得焦点

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

热点排行