T
temar
Gast
Hallo,
Wieso wird die Beschriftung meiner Buttons nicht richtig dargestellt, lediglich durch ... ? Ich vermute mal, dass die Buttons zu klein sind?
Danke!
Wieso wird die Beschriftung meiner Buttons nicht richtig dargestellt, lediglich durch ... ? Ich vermute mal, dass die Buttons zu klein sind?
Java:
import javax.swing.*;
public class Gui extends JFrame
{
private JPanel panel;
private JButton button;
private int x = 10;
private int y = 10;
private int val = 1;
public Gui()
{
setDefaultCloseOperation(EXIT_ON_CLOSE);
setBounds(200, 150, 250, 250);
setResizable(false);
panel = new JPanel();
setContentPane(panel);
panel.setLayout(null);
for (int i=1; i<=3; i++)
{
for (int j=1; j<=3; j++)
{
button = new JButton(Integer.toString(val));
button.setBounds(x, y, 30, 30);
panel.add(button);
x += 35;
val++;
}
x = 10;
y += 35;
}
button = new JButton("0");
button.setBounds(x, y, 65, 30);
panel.add(button);
}
}
Danke!