gpt4 book ai didi

java - JDialog 并禁用主窗口

转载 作者:行者123 更新时间:2023-11-30 04:20:42 25 4
gpt4 key购买 nike

我在我的项目中使用JDialog。当我单击主框架中的按钮时,出现 JDialog 框架,并且主窗口变为非 Activity 状态。是否有可能保持主窗口处于 Activity 状态?

最佳答案

When I click button in main frame JDialog frame appears and main window becomes inactive. Is there any possibility to remain main window active?

解决方案:直接将 JDialog 设置为非模态,

myDialog.setModalityType(ModalityType.MODELESS);

或者通过将正确的 ModalityType 传递到 JDialog 的构造函数中。

JDialog myDialog = new JDialog(myFrame, "My Dialog", ModalityType.MODELESS);

关于java - JDialog 并禁用主窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17135568/

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