程序如下:
import java.awt.*;
import java.awt.event.*;
class FrameDemo2
{
public static void main(String[] args)
{
Frame f=new Frame();
f.setBounds(200,100,500,500);
f.setVisible(true);
f.setLayout(new FlowLayout());
Button b=new Button("button");
f.add(b);
new KeyAdb.addKeyListener(apter()
{
public void KeyPressed(KeyEvent e)
{
if(e.isControlDown() && e.getKeyChar()==KeyEvent.VK_ENTER )
System.exit(0);
}
});
}
}
为什么 运行时按着 ctrl+回车没反应呢 学长学姐 帮下忙。 |