1、打开eclipse,并且建立java一个工程,具体如下代码:
addActionListene
(newActionListene
()
{
pu
licvoidactionPe
fo
med(ActionEvente)
{
dispose()
}
})
2、执行该程序查看结果,如图所示。
esc键通常不是说退出,是加上ctrl键可以实现倒回桌面的 *** 作,你要关闭一个程序就要
看这程序有没有支持快捷键的功能,如果没有
通常是不支持的, 当然比如网页上面用ctrl加
f4可以实现快速关闭当前 *** 作界面。
给按钮添加 ActionPerform 事件 内容写System.exit(0);package com.lx
import java.awt.Button
import java.awt.FlowLayout
import java.awt.Frame
import java.awt.event.ActionEvent
import java.awt.event.ActionListener
public class Test implements ActionListener {
Frame f = new Frame()
public static void main(String[] args) {
Test t = new Test()
t.init()
}
private void init() {
Button b = new Button("exit")
b.addActionListener(this)
f.add(b)
f.setLayout(new FlowLayout())
f.setSize(100,100)
f.setVisible(true)
}
public void actionPerformed(ActionEvent arg0) {
f.setVisible(false)
f.dispose()
System.exit(0)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)