perfin/src/main/resources/transactions-view.fxml

39 lines
1.4 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?import com.andrewlalis.perfin.view.component.PropertiesPane?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="com.andrewlalis.perfin.control.TransactionsViewController"
>
<top>
<HBox styleClass="std-padding,std-spacing">
<Button text="Add Transaction" onAction="#addTransaction"/>
</HBox>
</top>
<center>
<HBox>
<BorderPane fx:id="transactionsListBorderPane" HBox.hgrow="ALWAYS">
<top>
<HBox styleClass="std-padding,std-spacing">
<PropertiesPane hgap="5" vgap="5">
<Label text="Filter by Account"/>
<ComboBox fx:id="filterByAccountComboBox"/>
</PropertiesPane>
</HBox>
</top>
<center>
<ScrollPane styleClass="tile-container-scroll">
<VBox fx:id="transactionsVBox" styleClass="tile-container"/>
</ScrollPane>
</center>
</BorderPane>
<VBox fx:id="detailPanel"/>
</HBox>
</center>
</BorderPane>