gpt4 book ai didi

java - 查找属于框架的所有模式对话框

转载 作者:行者123 更新时间:2023-12-02 05:22:57 26 4
gpt4 key购买 nike

我需要能够判断我的应用程序中是否打开了任何模式对话框。有什么办法可以做到这一点吗?

解决方案好吧,根据已接受的答案,这就是我想出的方法来完成我所需要的:

Window[] wins : myMainFrame.getOwnedWindows();
for(Window w : wins) {
if(w instanceof JDialog) {
JDialog jd = (JDialog)w;
if(jd.isModal() && jd.isVisible()) {
// back out of current operation (return null in my case)
return null;
}
}

最佳答案

也许打电话WindowgetOwnedWindows() 就是您要查找的内容,所有从 Window 派生的类都将具有此方法,包括 JFrame 和 JDialog。

但我同意更多背景信息会有所帮助!

关于java - 查找属于框架的所有模式对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26346466/

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