JAVA:JTabbedPane——如何引用内容窗格?

发布于 2024-11-02 00:01:16 字数 77 浏览 0 评论 0原文

我试图引用选项卡式窗格的内容,而不是选项卡本身。我找到的关于此事的每篇文章都只影响选项卡,而不影响选项卡内容……我有点迷失了。有什么帮助吗?

I'm trying to reference the contents of a tabbed pane and NOT the tab itself. Every article i find on the matter only affects the tab and not the tab contents... im a bit lost. any help?

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

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

发布评论

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

评论(1

你又不是我 2024-11-09 00:01:17

您不应该手动将任何内容放入内容窗格中。您对内容窗格的唯一访问权限是通过将子面板放入不同的索引位置,使用

    JTabbedPane.add(String title, Component component) 

显然子组件本身可以是它自己的 JPanel,并且您可以向该面板添加您喜欢的任何内容。

You shouldn't be manually putting anything in the content pane. The only access you should have to the content pane is by putting in sub panels in various index positions, using

    JTabbedPane.add(String title, Component component) 

Obviously the sub component itself can be it's own JPanel, and you can add whatever you like to that panel.

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