|
|
@ -45,6 +45,7 @@ public class MeinGui extends JFrame implements ActionListener { |
|
|
|
JLabel leeren; |
|
|
|
JButton loeschen; |
|
|
|
JButton exit; |
|
|
|
JButton hinzufuegen; |
|
|
|
public static JLabel budgetDispaly; |
|
|
|
public static JLabel expensesDisplay; |
|
|
|
public static JLabel balanceDisplay; |
|
|
@ -208,6 +209,11 @@ public class MeinGui extends JFrame implements ActionListener { |
|
|
|
savingsDisplay.setFont(new Font("Tahoma", Font.BOLD, 12)); |
|
|
|
contentPane.add(savingsDisplay); |
|
|
|
|
|
|
|
//Einfügen und hinzufügen des "Hinzufügen" Buttons |
|
|
|
this.hinzufuegen = new JButton("Hinzuf\\u00fcgen"); |
|
|
|
hinzufuegen.setBounds(660, 126, 89, 23); |
|
|
|
contentPane.add(hinzufuegen); |
|
|
|
|
|
|
|
//Einfügen des Textfeldes für die Beschreibung der Ausgabe |
|
|
|
textExpensesName = new JTextField(); |
|
|
|
textExpensesName.setBounds(60, 221, 128, 20); |
|
|
|