MyFrame(){
String titel = "Rezept";
JLabel label = new JLabel(titel);
JButton abutton = new JButton("Abbrechen");
JButton sbutton = new JButton("Speichern");
JPanel jp1 = new JPanel();
jp1.setLayout(new FlowLayout(FlowLayout.CENTER));
jp1.add(label);
JPanel jp2 = new JPanel();
jp2.setLayout(new GridLayout(1,2));
jp2.add(abutton);
jp2.add(sbutton);
setLayout(new BorderLayout());
setSize(300,500);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
add(jp1, BorderLayout.NORTH);
add(jp2, BorderLayout.SOUTH);
}
public static void main(String[]args){
new MyFrame();
}
我只是不明白。当我运行此GUI时,它根本不打印任何内容。
我只得到一个空框架。我在这里做错了什么?
(代码在“MyFrame extends JFrame”类中)