Zwischenstand Views
This commit is contained in:
36
src/main/resources/Accountview.fxml
Normal file
36
src/main/resources/Accountview.fxml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
<BorderPane fx:id="root" xmlns="http://javafx.com/javafx"
|
||||
xmlns:fx="http://javafx.com/fxml"
|
||||
fx:controller="ui.AccountviewController">
|
||||
|
||||
<top>
|
||||
<HBox spacing="10" alignment="CENTER_LEFT">
|
||||
<!-- Back Button -->
|
||||
<Button text="Back" fx:id="backButton" onAction="#onBackButtonClicked"/>
|
||||
|
||||
<!-- Account Name Label -->
|
||||
<Label fx:id="accountNameLabel" text="Account: "/>
|
||||
|
||||
<!-- Kontostand Label -->
|
||||
<Label fx:id="balanceLabel" text="Balance: "/>
|
||||
</HBox>
|
||||
</top>
|
||||
|
||||
<center>
|
||||
<ListView fx:id="transactionListView" />
|
||||
</center>
|
||||
|
||||
<bottom>
|
||||
<HBox spacing="10" alignment="CENTER">
|
||||
<!-- Buttons / Menüs zur Anzeigeänderung -->
|
||||
<Button text="Aufsteigend sortieren" onAction="#onSortAscending"/>
|
||||
<Button text="Absteigend sortieren" onAction="#onSortDescending"/>
|
||||
<Button text="Nur positive" onAction="#onShowPositive"/>
|
||||
<Button text="Nur negative" onAction="#onShowNegative"/>
|
||||
<Button text="Alle anzeigen" onAction="#onShowAll"/>
|
||||
</HBox>
|
||||
</bottom>
|
||||
</BorderPane>
|
||||
Reference in New Issue
Block a user