单击按钮时打开面板
有谁知道如何让 GUI 按钮在 java 中打开一个新的 JPanel 吗?它不在谷歌上。它显示一个关于面板。感谢您的帮助!
does anyone know how to make a GUI button open up a new JPanel in java? its not on google. its to show an about panel. thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用未装饰的 JDialog 显示面板
You can show panel using an undecorated JDialog
我想 JDialog 就是您所需要的。
有关详细信息,请参阅此:如何制作对话框
这是示例:
I guess JDialog is what you need.
See this for details : How to Make Dialogs
Here is a sample :
我认为通过实现 CardLayout 你可以解决这个问题
I think that by implements CardLayout you can solve that
首先,您需要为按钮创建一个事件处理程序,然后在处理程序中您应该创建面板并使其可见。如果您想要更多弹出窗口,您应该使用类似:
这将创建一条警告消息,您也可以创建自己的服装对话框,我建议阅读 这个
first you would need to create an event handler for your button, then in your handler you should create your panel and make it visible. if you want more of a popup you should use like:
that will create a warning message, you could also create your own costume dialog i would suggest reading this