我有一个自定义的 JPanel,它的paintComponent 方法被覆盖以绘制图像。
我想在容器中垂直居中插入几个这样的自定义面板。为此,我创建了一个以 BoxLayout.X_AXIS 作为布局管理器的 jpanel。
这很好用,显示了我想要的,但我想在自定义面板之间添加边距。
EmptyMargins 只是被忽略了,棘手的部分是我不能(或不想......)在它们之间添加支柱或框,因为我需要从循环中获取每个自定义面板,该循环需要容器的所有组件并将它们投射到 CustomPanel 中。
看到问题了吗?如果我在面板之间添加支柱,则会出现演员表异常并且 EmptyBorders 不起作用......欢迎任何想法!
注意:我对其他布局管理器提议持开放态度!;-)
这是代码:
public class StackExemple {
public StackExemple() {
JFrame frame = new JFrame();
frame.setPreferredSize(new Dimension(600, 300));
JPanel container = new JPanel();
container.setPreferredSize(new Dimension(600, 300));
container.setLayout(new BoxLayout(container, BoxLayout.X_AXIS));
CustomPanel customPanel1 = new CustomPanel();
CustomPanel customPanel2 = new CustomPanel();
CustomPanel customPanel3 = new CustomPanel();
container.add(customPanel1);
container.add(customPanel2);
container.add(customPanel3);
frame.getContentPane().add(container);
frame.pack();
frame.setVisible(true);
//Loop which takes the custompanels
for(Component comp : container.getComponents()) {
CustomPanel panel = (CustomPanel)comp;
//DO SOMETHING
System.out.println("Hello World");
}
}
private class CustomPanel extends JPanel{
private BufferedImage image;
public CustomPanel() {
setPreferredSize(new Dimension(100, 100));
setMinimumSize(getPreferredSize());
setMaximumSize(getPreferredSize());
setBorder(BorderFactory.createEmptyBorder(0,50,0,0));
setBackground(Color.RED);
// try {
// image = ImageIO.read(ClassLoader.getSystemClassLoader().getResource("Ressources/img.png"));
// } catch (IOException ex) {
// System.out.println("Ooops... ");
// }
}
@Override
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
// int x = (this.getWidth() - image.getWidth()) / 2;
// int y = (this.getHeight() - image.getHeight()) / 2;
// g.drawImage(image, x, y, null);
}
}
}