如何使用 JButton ActionListener 关闭我的程序?
我有一个按钮和一个按钮处理程序(ActionEvent)。 现在,我想要做到这一点,以便当您单击该按钮时,您的程序将关闭。 我该怎么做呢? 我的按钮处理程序代码:
class ButtonHandler implements ActionListener{
public void actionPerformed( ActionEvent e){
}
}
所以我基本上需要关闭整个 JFrame。
I have a button, and a buttonhandler(ActionEvent) for it.
Now, I want to make it so that, when you click the button, your program shuts down.
How would I go about doing this?
My buttonhandler code:
class ButtonHandler implements ActionListener{
public void actionPerformed( ActionEvent e){
}
}
So I basicly need to shutdown the whole JFrame.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 ButtonHandler 将引用它所属的 JFrame 并调用 JFrame.dispose();
Your ButtonHandler would have a reference to the JFrame it's a member of and call JFrame.dispose();
如果要关闭整个程序,可以使用
System.exit()
。If you are shutting down the entire program, you can use
System.exit()
.