Problem mit Button und Label

This commit is contained in:
zhe 2021-11-17 19:34:10 +01:00
parent e451450be6
commit d8d6b9d33c
3 changed files with 6 additions and 6 deletions

View File

@ -12,17 +12,17 @@ public class GameGui {
JPanel panel = new JPanel();
panel.setBorder(BorderFactory.createMatteBorder(400, 10, 10, 10,Color.black));
/*
//Label
JLabel label = new JLabel(" Ihr Name:");
panel.add(label);
//Textfeld
//JTextField tfName = new JTextField("Bitte Name eingeben");
//tfName.setForeground(Color.white);
JTextField tfName = new JTextField("Bitte Name eingeben");
tfName.setForeground(Color.white);
// Hintergrundfarbe wird gesetzt
//tfName.setBackground(Color.GRAY);
tfName.setBackground(Color.GRAY);
// Textfeld wird unserem Panel hinzugefügt
//panel.add(tfName);
panel.add(tfName);
//Button
JButton button1 = new JButton("Start");
@ -35,7 +35,7 @@ public class GameGui {
panel.add(button1);
panel.add(button2);
panel.add(button3);
*/
frame = new JFrame("Tetris");
frame.add(panel,BorderLayout.EAST);
frame.setSize(width,height);