所以我偶然发现JTabbedPane中的标签位于右侧和左侧(即setTabPlacement(JTabbedPane.RIGHT)
),我喜欢它的外观。我需要的是利用这些留在标签下方的空间。我目前有一个JButtons列,但它们被推到一边,留下了很多空白。
有关如何做到这一点的任何想法?某种自定义叠加还是什么?
Here's a screenshot。在代码中我基本上有一个水平对齐的Box,在JTree上有JTabbedPane,然后是按钮列。
boxOfEverything.add(tabbedPane);
boxOfEverything.add(boxColumnButtons);
答案 0 :(得分:1)
我做了这个community wiki因为这个答案不是我的。 @cheesecamera似乎在另一个forum上发布了相同的问题,并在那里得到了答案。我复制了答案,以便来到这里寻找答案的人可以得到答案。
想法是使用swing glasspane
。
import java.awt.*;
import javax.swing.*;
public class RightTabPaneButtonPanel {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new RightTabPaneButtonPanel().makeUI();
}
});
}
public void makeUI() {
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.setTabPlacement(JTabbedPane.RIGHT);
JPanel panel = new JPanel(new GridLayout(0, 1));
for (int i = 0; i < 3; i++) {
JPanel tab = new JPanel();
tab.setName("tab" + (i + 1));
tab.setPreferredSize(new Dimension(400, 400));
tabbedPane.add(tab);
JButton button = new JButton("B" + (i + 1));
button.setMargin(new Insets(0, 0, 0, 0));
panel.add(button);
}
JFrame frame = new JFrame();
frame.add(tabbedPane);
frame.pack();
Rectangle tabBounds = tabbedPane.getBoundsAt(0);
Container glassPane = (Container) frame.getGlassPane();
glassPane.setVisible(true);
glassPane.setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.weightx = 1.0;
gbc.weighty = 1.0;
gbc.fill = GridBagConstraints.NONE;
int margin = tabbedPane.getWidth() - (tabBounds.x + tabBounds.width);
gbc.insets = new Insets(0, 0, 0, margin);
gbc.anchor = GridBagConstraints.SOUTHEAST;
panel.setPreferredSize(new Dimension((int) tabBounds.getWidth() - margin,
panel.getPreferredSize().height));
glassPane.add(panel, gbc);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}