如何使用 Java Swing 将一堆 JPanel 添加到我的 JFrame 中?

发布于 2024-11-07 17:06:50 字数 353 浏览 0 评论 0原文

我生成一堆 JPanel,然后将它们传递到扩展 JFrame 的类中。如何向此 JFrame 添加无限数量的 JPanel。我还在阅读有关 JScrollPane 的内容,我是否应该将其以某种方式合并到设计中?

示例代码:

class foo extends JPanel
{
  //generate JPanels
}

class bar extends JFrame
{
  //grab some amount of foo classes and put them into this JFrame and show it
}

显示此 JFrame 时还有什么需要注意的吗?

谢谢

I generate a bunch of JPanels and then pass them into a class that extends JFrame. How do I add an indefinite number of JPanels to this JFrame. I was also reading about JScrollPane should I incorporate this somehow into the design?

Example Code:

class foo extends JPanel
{
  //generate JPanels
}

class bar extends JFrame
{
  //grab some amount of foo classes and put them into this JFrame and show it
}

Also is there anything I need to watch out for when showing this JFrame?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

茶花眉 2024-11-14 17:06:50

如何向此 JFrame 添加无限数量的 JPanel?

CardLayoutJDesktopPane/JInternalFrameJTabbedPaneJScrollPane - 有许多选项。

显示此 JFrame 时还有什么需要注意的吗?

(耸肩)

  • 在 EDT 上构建并显示 GUI 组件。
  • pack() GUI,然后设置位置并调用 setVisible(true)
  • 不要依赖内容窗格的默认布局。
  • 不要在顶级容器中实现自定义绘制。
  • ..

How do I add an indefinite number of JPanels to this JFrame?

CardLayout, JDesktopPane/JInternalFrame, JTabbedPane, JScrollPane - there are a number of options.

Also is there anything I need to watch out for when showing this JFrame?

(shrugs)

  • Construct and show GUI components on the EDT.
  • pack() the GUI before setting the position and calling setVisible(true).
  • Don't rely on the default layouts of content panes.
  • Don't implement custom painting in a top level container.
  • ..
旧街凉风 2024-11-14 17:06:50

JFrame -> JScrollPane ->父亲 JPanel 然后你将决定哪个 LayoutManager 将放置您的一堆 JPanels,通过默认 FlowLayout,不要忘记使用 childsPanel 的 PreferedSize

JFrame -> JScrollPane -> fathers JPanel then you'll decide which of LayoutManager will lay your bunch of JPanels, by defalut FlowLayout, don't forget to play with PreferedSize for childsPanels

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