BorderLayout

master
obaya 2024-08-13 20:01:05 +02:00
parent e080ba06c6
commit 591924738a
2 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,8 @@ public class Jpanel {
JPanel panel = new JPanel(); JPanel panel = new JPanel();
panel.setBackground(Color.red); panel.setBackground(Color.red);
// setze eine Grafisches Bauelement (int x, int y, int width, int height) // setze eine Grafisches Bauelement (int x, int y, int width, int height)
panel.setBounds(0, 0, 240, 250); panel.setBounds(0, 0, 24, 50);
// Erstelle ein Fenster // Erstelle ein Fenster
JFrame frame = new JFrame(); JFrame frame = new JFrame();

View File

@ -14,7 +14,7 @@ import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; import java.awt.event.ActionListener;
/* /*
* - ActionListener ist ein Interface Klasse, * - ActionListener ist ein (marker)Interface Klasse,
* die nur eine abstrakte Methode hat, die mit drücken auf Button reagiert * die nur eine abstrakte Methode hat, die mit drücken auf Button reagiert
* *
* Also Das Kochrezept: * Also Das Kochrezept:
@ -33,7 +33,7 @@ public class jbutton implements ActionListener {
button.setText("Click me"); button.setText("Click me");
button.addActionListener(null); button.addActionListener(null);
// 2. Hinzufügen des ActionListeners zum Button // 2. Hinzufügen des ActionListeners zum Button
JLabel label = new JLabel(); JLabel label = new JLabel();
/* /*