Java GUI编译时没有错误,但有时没有显示任何内容

时间:2012-03-31 00:46:37

标签: java swing user-interface

我正在使用扩展JFrame的自定义类,但有时它什么也没显示。我从来没有遇到过任何错误,所以我很好奇这是一个可以帮我打印东西的java命令。我环顾四周寻找其他问题,但没有发现任何相似之处。不是真的做了太疯狂的事情,但好奇为什么会这样。我想纠正这个问题,以避免将来出现问题。


空白
enter image description here
GUI
enter image description here

public MemberPanel(int i) throws IOException {
  Container contentPane = getContentPane();
  GridLayout layout = new GridLayout(2, 1);
  contentPane.setLayout(layout);
  setVisible(true);
  setLocation(0, 0);
  setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  setSize(640, 170);
  setResizable(false);

  greenStatus = new JButton("Non-Critical");
  yellowStatus = new JButton("Important");
  redStatus = new JButton("Mission Critical");

  greenStatus.setFont(fontTextOne);
  yellowStatus.setFont(fontTextOne);
  redStatus.setFont(fontTextOne);

  greenStatus.addActionListener(this);
  yellowStatus.addActionListener(this);
  redStatus.addActionListener(this);

  buttonPanel.add(greenStatus);
  buttonPanel.add(yellowStatus);
  buttonPanel.add(redStatus);

  statusLabel = new JLabel("In 75 letters or less... What are you working on?");
  statusLabel.setVerticalAlignment(JLabel.CENTER);
  statusLabel.setHorizontalAlignment(JLabel.CENTER);
  statusLabel.setFont(fontTextTwo);
  textFieldPanel.add(statusLabel);
  textFieldPanel.add(statusMessage);

  contentPane.add(buttonPanel);
  contentPane.add(textFieldPanel);

} 

1 个答案:

答案 0 :(得分:10)

您在JFrame上调用setVisible(true)后,在 之后添加了一堆

public MemberPanel(int i) throws IOException {
  Container contentPane = getContentPane();
  GridLayout layout = new GridLayout(2, 1);
  contentPane.setLayout(layout);
  setVisible(true);  // ****** here

  // .....

  // only now do you add components...
  contentPane.add(buttonPanel);
  contentPane.add(textFieldPanel);

} 

因此,组件可能显示也可能不显示,具体取决于GUI是否重新绘制(请参阅重新调整空gui大小时会发生什么)。修复:在添加所有内容后,仅在中调用setVisible(true)