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();
panel.setBackground(Color.red);
// 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
JFrame frame = new JFrame();

View File

@ -14,7 +14,7 @@ import java.awt.event.ActionEvent;
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
*
* Also Das Kochrezept: