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.
我想在拆分窗格的右侧显示一个 JToolbar,该窗格也将包含一个 JTabbedPane,我们该怎么做?在某个组件中包装 TabbedPane 和工具栏?ps:用户不应该能够在右侧窗格中最小化等...
将 JPanel 放在拆分窗格的右侧。
给 JPanel 一个 BorderLayout。
将 JToolbar 添加到 JPanel 的 NORTH,并将 JTabbedPane 添加到 CENTER。