默认情况下,当我选择任何按钮时,JOptionPane会关闭框架,但在我的情况下,我希望在选择其中一个按钮时使其保持打开状态,以便显示弹出屏幕(背景为原始框架)。

我该怎么办?

这是我的代码:
(非常混乱,我只是在收集我的想法。我有一个更正式的程序,该程序更大,我将在以后实现)

选择A-E时,我将弹出一个对话框,其中包含“选择”或“取消”。我不想关闭原始框架。

 import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JLabel;

import java.awt.*;
import javax.swing.*;
public class Quiz
{
    public static void main(String[] args)
    {
        String message = "";
        for(int j = 0; j < 40; j++)
            message += "hello world ";

        JScrollPane scrollPane = new JScrollPane(new JLabel(message));
        scrollPane.setPreferredSize(new Dimension(500,400));
        Object test = scrollPane;


        String[] possibleAns = { "E", "D", "C", "B", "A" };

        JTextArea textArea = new JTextArea(message);
        textArea.setLineWrap(true);
        textArea.setWrapStyleWord(true);
        textArea.setMargin(new Insets(5,5,5,5));
        scrollPane.getViewport().setView(textArea);
        test = scrollPane;

        int rc = JOptionPane.showOptionDialog(null, test, "Advanced Quiz   Program",
                JOptionPane.WARNING_MESSAGE, 0, null, possibleAns, possibleAns[0]);





        System.out.println(rc);

        String[] pick = {"Pick", "Close" };
        switch(rc)
        {
            case 4:
                    System.out.println("You picked A");
                    JScrollPane scrollPane2 = new JScrollPane(new JLabel(message));
                    scrollPane.setPreferredSize(new Dimension(500,400));
                    Object messaseA = scrollPane;





                    JTextArea textArea2 = new JTextArea("blah blah");
                    textArea.setLineWrap(true);
                    textArea.setWrapStyleWord(true);
                    textArea.setMargin(new Insets(5,5,5,5));
                    scrollPane.getViewport().setView(textArea);
                    test = scrollPane;
                    int retVal = JOptionPane.showOptionDialog(null, test, "Advanced Quiz Program",
                    JOptionPane.WARNING_MESSAGE, 0, null, pick, pick[0]);
                     break;
            case 3:
                            System.out.println("You picked B");
                            break;
            case 2:
                            System.out.println("You picked C");
                            break;
            case 1:
                            System.out.println("You picked D");
                            break;
            case 0:
                            System.out.println("You picked E");
                            break;
            default:
                            System.out.println("error");
        }

    }
}

最佳答案

最好的选择:不要使用JOptionPane。如果要使用顶层主窗口,请使用JFrame;如果要保持打开状态但非模式的对话框窗口,请使用非模式的JDialog。如果要使用模式对话框窗口,请使用JOptionPane或模式JDialog(实际上是从中创建JOptionPane的)。

如果必须使用JOptionPane,则可以使用JOptionPane构造函数创建一个,从中提取对话框,并将其设置为非模式对话框。



根据您的编辑和代码,您似乎确实想将JOptionPane用作主程序窗口,而这实际上是您不想执行的。我建议:


首先,要从主要方法中获取大部分信息。该方法应用于创建初始对象(此处为GUI)并将其设置为运动状态。
然后创建创建POJO的类-普通的旧Java对象,具有构造函数的对象,实例字段/属性和实例方法。
您的一个类应该创建一个GUI,可能是JFrame或主应用程序窗口,其中包含JTextArea和所需的许多按钮。
只有在按下一个按钮时才使用JOptionPanes,连接到该按钮的ActionListener会执行所需的任何操作,包括启动带有“ Pick”或“ Cancel”选项的JOptionPane。

关于java - JOptionPane当我点击“确定”时如何停止关闭,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34582308/

10-13 22:53