因此,我创建了一个“CustomPanel”类的对象,该对象创建一个带有 GridLayout 的 JPanel 和其中的标签,然后将其添加到我的 JFrame 中。它可以很好地显示标签“HELLO”,但是当我将 jpanel 的布局管理器更改为 (null) 时,它不会显示任何内容。我知道,我知道使用空布局是一种非常糟糕的做法,但我只想知道为什么它不显示组件。
主要类别:
import javax.swing.JFrame;
public class MainMenu extends javax.swing.JFrame{
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Size the window.
frame.setSize(500, 500);
CustomPanel panel = new CustomPanel();
frame.getContentPane().add(panel);
frame.setVisible(true);
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
带有 GridLayout 的 CustomPanel 类(效果很好):
import java.awt.GridLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class CustomPanel extends JPanel{
public CustomPanel() {
initUI();
}
public final void initUI() {
// create the panel and set the layout
JPanel main = new JPanel();
main.setLayout(new GridLayout());
// create the labels
JLabel myLabel = new JLabel("HELLO");
// add componets to panel
main.add(myLabel);
this.add(main);
}
}
具有空布局的 CustomPanel 类(这不起作用):
import javax.swing.JLabel;
import javax.swing.JPanel;
public class CustomPanel extends JPanel{
public CustomPanel() {
initUI();
}
public final void initUI() {
// create the panel and set the layout
JPanel main = new JPanel();
main.setLayout(null);
// create the labels
JLabel myLabel = new JLabel("HELLO");
myLabel.setBounds(10, 10, myLabel.getPreferredSize().width, myLabel.getPreferredSize().height);
// add componets to panel
main.add(myLabel);
this.add(main);
}
}
jlabel 在 jpanel 内正确设置,因此它应该显示在 jframe 的左上角,但事实并非如此。是什么原因造成的?我错过了什么?
摇曳的蔷薇
相关分类