gpt4 book ai didi

java - JDialog 的 Modality 设置为 Dialog.ModalityType.MODELESS : optionPane. getValue() 不再工作

转载 作者:行者123 更新时间:2023-11-30 03:58:22 24 4
gpt4 key购买 nike

我有一个应用程序,我需要在框架上工作,同时我想打开一个对话框。

所以我将模态设置为 Dialog.ModalityType.MODELESS。虽然这使我能够与父 JFrame 交互,但我无法再在对话框上使用 getValue()

这是一个正在运行的最小示例:

package Test;

import java.awt.Dimension;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;

public class TestModalityDialog {

public static void main(String[] args) {
// TODO Auto-generated method stub

JFrame frame = new JFrame();
frame.setPreferredSize(new Dimension(800,600));
frame.setVisible(true);
frame.pack();

JOptionPane optionPane = new JOptionPane();
String[] options = new String[]{"Hello"};
JLabel label1 = new JLabel(
"Click on a cluster to delete it (needs to be confirmed by pressing the 'Confirm' button.");
JLabel label2 = new JLabel(
"Press 'p' to undelete an unconfirmed deletion.");
Object complexMsg[] = { label1, label2 };
optionPane.setMessage(complexMsg);
optionPane.setOptions(options);
optionPane.setMessageType(JOptionPane.PLAIN_MESSAGE);
JDialog dialog = optionPane.createDialog(frame,
"Select undesired clusters");
//dialog.setModalityType(Dialog.ModalityType.MODELESS); //uncomment this line out
dialog.setVisible(true);
dialog.setVisible(false);//must be set to false for Modality to work
dialog.setVisible(true);

Object obj = optionPane.getValue();
int result = -1;
for (int k = 0; k < options.length; k++) {
if (options[k].equals(obj)) {
result = k;
}
}

if (result == 0) {
System.out.println("Succesful");
}

}

}

当您按下标有“Hello”的按钮时,系统就会在这里工作。放在后面就无法与框架交互。如果取消注释

//dialog.setModalityType(Dialog.ModalityType.MODELESS);

这将允许“交互”(不是在这个最小的 ofc 示例中),但我不再使用系统了。

我没想到的第二件事是,在未注释的版本中,您必须按两次按钮才能工作。

如果需要帮助,我会很高兴,已经尝试了其他 3 个模态值,但没有成功。

干杯,佛

最佳答案

无模式对话框的通信可以使用PropertyChangeEvent来完成,可以是现有的,参见here ,您自己的一个,已看到 here .

关于java - JDialog 的 Modality 设置为 Dialog.ModalityType.MODELESS : optionPane. getValue() 不再工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22540217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com