限制对其他 JFrame 的访问
如何限制对其他 JFrame 的访问?
如果我打开主框架并单击按钮显示其他 jframe,用户应该无法返回主框架。
我该怎么做?
How do i restrict access to other JFrame?
if I open my main frame and when click the button to display other jframe, the user should not be able to go back to the main frame.
how do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用对话框(
JDialog
类)代替并使其成为模式。以下是有关如何执行此操作的一些帮助:
http://download.oracle.com/javase/tutorial/uiswing/components /dialog.html
问候,
Use a dialog (
JDialog
class) instead and make it modal.Here is some help on how to do this:
http://download.oracle.com/javase/tutorial/uiswing/components/dialog.html
Regards,
当您单击该按钮时,您将显示一个模态 JDialog。然后,直到用户关闭对话框为止,他们将无法访问主框架。
When you click the button you display a modal JDialog. Then until the user closes the dialog they won't be able to access the main frame.
试试这个方法...
try this method...
我不清楚你的问题,但根据我的理解,我相信你想在单击按钮时打开一个对话框,但是当你单击按钮时,会显示一个新的 JFrame,并且你不可能返回到原始框架。
Your question is not clear to me but as per my understanding I believe You want to open a dialog on button click but when you click the button a new JFrame is displayed and it becomes impossible for you to get back to the original frame.