如何使用 JButton ActionListener 关闭我的程序?

发布于 2024-11-01 03:07:41 字数 249 浏览 0 评论 0原文

我有一个按钮和一个按钮处理程序(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离笑几人歌 2024-11-08 03:07:41

您的 ButtonHandler 将引用它所属的 JFrame 并调用 JFrame.dispose();

class ButtonHandler implements ActionListener{
    final JFrame parent; 
    public ButtonHandler(JFrame p) { parent = p; }

    public void actionPerformed( ActionEvent e){
        parent.dispose();
    }
}

Your ButtonHandler would have a reference to the JFrame it's a member of and call JFrame.dispose();

class ButtonHandler implements ActionListener{
    final JFrame parent; 
    public ButtonHandler(JFrame p) { parent = p; }

    public void actionPerformed( ActionEvent e){
        parent.dispose();
    }
}
北方的巷 2024-11-08 03:07:41

如果要关闭整个程序,可以使用System.exit()

If you are shutting down the entire program, you can use System.exit().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文