将 jpanel 添加到 jframe

发布于 2024-11-04 10:45:21 字数 149 浏览 1 评论 0原文

是否可以将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小耗子 2024-11-11 10:45:21

当然这是可能的 - 您可以这样做:

frame.setContentPane(panel);

此面板将是您放置 UI 的所有组件(菜单栏除外)的容器。

Sure it's possible - you can do it like this:

frame.setContentPane(panel);

This panel will be the container in which you'll put all the components of your UI(except the menubar).

枉心 2024-11-11 10:45:21

是的,当然,与将任何组件添加到任何容器的方式相同:

frame.add(panel)

yes, sure, same way as you would add any component to any container:

frame.add(panel)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文