Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Possible Duplicate: How to make a JFrame Modal in Swing java
How to make JFrame to be modal?
JFrame
Please don't suggest to use JDialog. The question is about JFrame. How to make modal namely it?
JDialog
要制作 JFrame 模态,您必须自己编写代码,将 setEnable(false) 设置为主窗口(您从那里打开新的 JFrame)。当用户退出 Jframe 时使其 setEnable(true)
br