如何通过swing在对话框中创建“yes to all”选项

发布于 2024-11-24 02:14:58 字数 480 浏览 0 评论 0原文

我想创建一个对话框,其中包含四个按钮

  1. yes
  2. no
  3. yes to all
  4. cancel

我可以创建对话框,但无法在 yes to all 按钮中添加操作。

Object[] options = {"Yes", "No", "Yes To All", "Cancel"};
int n = JOptionPane.showOptionDialog(MainGui.appView, "file "+tempFile+ 
              "exits.\n Do you wish to overwrite?", "Question", 
              JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, 
              null, options, options[2]);

I want to create a dialog box which contain four button

  1. yes
  2. no
  3. yes to all
  4. cancel

I'm able to create dialog but I am unable to add action in yes to all button.

Object[] options = {"Yes", "No", "Yes To All", "Cancel"};
int n = JOptionPane.showOptionDialog(MainGui.appView, "file "+tempFile+ 
              "exits.\n Do you wish to overwrite?", "Question", 
              JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, 
              null, options, options[2]);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

墨离汐 2024-12-01 02:14:58

检查n 的值。如下所示:

n --> button
-----------
0 --> Yes
1 --> No
2 --> Yes to all
3 --> Cancel

您可以切换n并分别执行操作。

Check for value of n. It will be as follows:

n --> button
-----------
0 --> Yes
1 --> No
2 --> Yes to all
3 --> Cancel

You can switch over n and do action respectively.

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