From 7a0738cbefe682e717b31d7010bee9e5635b4755 Mon Sep 17 00:00:00 2001 From: Marc Dimmerling Date: Fri, 9 Feb 2024 17:06:34 +0100 Subject: [PATCH] buttonPanel --- src/main/java/Notizbuch.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/Notizbuch.java b/src/main/java/Notizbuch.java index 396af41..40b1c33 100644 --- a/src/main/java/Notizbuch.java +++ b/src/main/java/Notizbuch.java @@ -8,6 +8,7 @@ import javax.swing.JFrame; import Test_Package.BorderLayout; import Test_Package.JButton; +import Test_Package.JPanel; import Test_Package.JScrollPane; import Test_Package.JTextArea; @@ -34,6 +35,8 @@ public class Notizbuch extends JFrame implements ActionListener { saveButton.addActionListener(this); loadButton = new JButton("Laden"); loadButton.addActionListener(this); + + JPanel buttonPanel = new JPanel(); } @Override