JLabel有时只在JPanel上显示

时间:2017-09-09 04:20:14

标签: jframe jpanel jlabel

我试图将我的标题显示在我的JPanel上,但是当我运行程序时,文本有时会出现。我不确定为什么它不会一直出现而且不知道如何解决它。

window = new JFrame();
window.setSize(800, 600);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.getContentPane().setBackground(Color.orange);
window.setLayout(null);
window.setVisible(true);
container = window.getContentPane();


titlePanel = new JPanel();
titlePanel.setBounds(100, 100, 600, 150);
titlePanel.setBackground(Color.white);
titleLabel = new JLabel("Program's Title");
titleLabel.setForeground(Color.black);
titlePanel.add(titleLabel);
container.add(titlePanel);

0 个答案:

没有答案