Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以从 JTabbedPane 中检索包含选项卡的组件,以便我可以将它放在 BorderLayout 北位置,并且选项卡窗格将位于 BorderLayout 中心位置?
我认为这样做没有任何意义 - 默认情况下,选项卡位于北方位置。
而且 - 不,无论如何你都不能这样做 - 你不能将选项卡与选项卡内容区域分开,因为它是由 TabbedPaneUI 组合的单个组件。您可以通过使用方法指定选项卡相对于内容的位置setTabPlacement。例如,您可以将其更改为 EAST 展示位置:
setTabPlacement
JTabbedPane tabbedPane = new JTabbedPane (); tabbedPane.setTabPlacement ( JTabbedPane.EAST );