我创建了一个OptionDialog
没有任何按钮的按钮,并在其中放置了一个JPanel
用于MigLayout
其布局的按钮。那里面JPanel
有另一个JPanel
。
这两个面板的外部似乎都有边距。也许它在容器上填充。无论哪种方式,我都想要一种摆脱它们的方法。
我怎样才能摆脱这些利润?在图片中,它们是 JPanel 周围的灰色和深橙色边框。
这是面板代码:
setBackground(new Color(239,209,59));
setLayout(new MigLayout("wrap 1"));
JLabel title = new JLabel("Enroll Today!", JLabel.CENTER);
Font f = title.getFont().deriveFont((float)36);
title.setFont(f);
add(title);
JPanel docsPanel = new JPanel();
docsPanel.setBorder(BorderFactory.createEmptyBorder());
docsPanel.setLayout(new MigLayout("wrap 1", "", "[grow,fill]"));
docsPanel.setBackground(new Color(255,235,115));
for (final Document d : docs){
JButton doc = new JButton("* "+d.getName());
doc.setFont(f.deriveFont((float)24));
doc.setBorder(null);
doc.setContentAreaFilled(false);
docsPanel.add(doc);
}
add(docsPanel);
这是选项对话框代码:
DocumentPanel panel = new DocumentPanel(controller.getDocuments());
JOptionPane.showOptionDialog(null, panel, "Enroll now!", JOptionPane.DEFAULT_OPTION,
JOptionPane.PLAIN_MESSAGE, null, new Object[] {}, null);