0

我有一个中央面板。这是我的父面板。我正在向父面板添加 3 个面板。

面板将垂直堆叠。就像标题面板,然后是中间面板,然后是底部面板。我只想专注于我的标题面板。当我使用文本创建 jlabel 时。标签显示并且面板边框延伸了父面板的整个宽度,这就是我想要的。

private JPanel titlePanel() {
  String text = "<html><b><big><font color=#5C8C5C>Help Dialog</font></big></b></html>";
  JLabel textLabel = new JLabel(text, JLabel.CENTER); 
  JPanel p = new JPanel();
  p.setLayout(new BoxLayout(p, BoxLayout.LINE_AXIS));
  p.add(textLabel);
  p.setBorder(BorderFactory.createLineBorder(Color.black));
  return p;   
}

我实际上想使用图标作为标签而不是 html 文本。因此,对代码进行更改。

private JPanel titlePanel() {
  Registry appReg = Registry.getRegistry(this);
  ImageIcon ediLabelIcon = appReg.getImageIcon("ToolLabel.ICON");
  JLabel textLabel = new JLabel(ediLabelIcon, JLabel.CENTER); 
  JPanel p = new JPanel();
  p.setLayout(new BoxLayout(p, BoxLayout.LINE_AXIS));
  p.add(textLabel);
  p.setBorder(BorderFactory.createLineBorder(Color.black));
  return p;   
}

现在标签显示了,但面板的边框仅与标签一样宽,并且没有拉伸父面板的宽度。

我试图弄清楚将面板边框扩展到父面板的宽度,而不是与标签一样宽。这是父面板的代码。

 private void createDialog() {

  Component titlePanel = titlePanel();
  Component verbiagePanel = verbiagePanel();
  Component closeButtonPanel = closeButton();
  setTitle("HELP Dialog");
  centerPanel = new JPanel();
  centerPanel.setLayout(new BoxLayout(centerPanel, BoxLayout.PAGE_AXIS));
  centerPanel.setPreferredSize(new Dimension(600, 300));
  centerPanel.add(titlePanel);
  centerPanel.add(Box.createRigidArea(new Dimension(0, 10)));
  centerPanel.add(verbiagePanel);
  centerPanel.add(Box.createHorizontalGlue());
  centerPanel.add(Box.createRigidArea(new Dimension(0, 10)));
  centerPanel.add(closeButtonPanel);
  getContentPane().add(centerPanel);
  this.pack();

}
4

1 回答 1

1

在 JLabel 文本中使用 HTML 切换了计算 JLabel 首选大小的机制。现在我无法详细解释它,但是如果您将创建标题标签更改为

JLabel textLabel = new JLabel("<html></html>", ediLabelIcon, JLabel.CENTER);

您的标签将被拉伸到父面板宽度。

或者您可以选择其他布局管理器,例如 GridBagLayout。使用 GridBagLayout,您可以强制将任何组件拉伸到其父宽度。

于 2012-08-02T14:36:33.037 回答