将 jpanel 添加到 jframe
是否可以将 JPanel
添加到 JFrame
中?怎么办呢?
JFrame frame = new JFrame();
JPanel panel = new JPanel();
Is it possible to add a JPanel
to a JFrame
? How can it be done?
JFrame frame = new JFrame();
JPanel panel = new JPanel();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然这是可能的 - 您可以这样做:
此面板将是您放置 UI 的所有组件(菜单栏除外)的容器。
Sure it's possible - you can do it like this:
This panel will be the container in which you'll put all the components of your UI(except the menubar).
是的,当然,与将任何组件添加到任何容器的方式相同:
yes, sure, same way as you would add any component to any container: