如何将 java gui 从一种 gui 转换到另一种 gui
我正在用java编写一个GUI,它有一些按钮,其中一个按钮是选项。我希望拥有它,这样当您单击选项时,它会将 gui 更改为我的选项 gui,而不是在另一个窗口中打开它。
我该怎么做?
I am programming a gui in java and it has some buttons one of these buttons is options. I would like to have it so when you click on options it changes the gui to my options gui instead of opening it in another window.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CardLayout
,参见这里,是一个不错的选择。或者,您可以只使用remove()
和revalidate()
,如下所示 此处。CardLayout
, seen here, is a good choice. Alternatively, you can justremove()
andrevalidate()
, as shown here.