保持 JInternalFrame 的焦点
有什么方法可以保持 JInternalFrame 的焦点,我的意思是,始终保持焦点,直到它关闭或 showVisible(false) 等?我已经搜索了一段时间,但我只找到了一个“临时”焦点,即当您单击另一个 JInternalFrame (例如)时焦点会切换。谢谢。
Is there any way to keeps focus of a JInternalFrame, I mean, always focused until it closed or showVisible(false) etc? I already search for a while but I only found a "temporary" focus, that is when you click another JInternalFrame (for example) the focus switched. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要为此使用 JInternalFrame。使用模态 JDialog。
Don't use a JInternalFrame for this. Use a modal JDialog.
关闭模态 JInternalFrame
看我写的(禅先生)
Closing a modal JInternalFrame
See the one by me (Mr. Zen)