JAVA:JTabbedPane——如何引用内容窗格?
我试图引用选项卡式窗格的内容,而不是选项卡本身。我找到的关于此事的每篇文章都只影响选项卡,而不影响选项卡内容……我有点迷失了。有什么帮助吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该手动将任何内容放入内容窗格中。您对内容窗格的唯一访问权限是通过将子面板放入不同的索引位置,使用
显然子组件本身可以是它自己的 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
Obviously the sub component itself can be it's own JPanel, and you can add whatever you like to that panel.