Die Buttons in dem Code werden untereinander angeordnet?? Warum??
Danke!
Code:
private void init2()
{
setSize(500,800);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton l = new JButton("Positionen: 1");
JButton l1 = new JButton("Positionen: 2");
JButton l2 = new JButton("Positionen: 3");
setLayout(new GridLayout(5,5));
add(l);
add(l1);
add(l2);
}
Danke!