25 lines
844 B
XML
25 lines
844 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.control.ScrollPane?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<BorderPane xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="com.andrewlalis.perfin.control.TransactionsViewController"
|
|
>
|
|
<top>
|
|
<HBox style="-fx-padding: 3px;">
|
|
<Button text="Add Transaction" onAction="#addTransaction"/>
|
|
</HBox>
|
|
</top>
|
|
<center>
|
|
<Label text="Center"/>
|
|
<ScrollPane fitToHeight="true" fitToWidth="true">
|
|
<VBox fx:id="transactionsVBox" style="-fx-padding: 3px; -fx-spacing: 5px;"/>
|
|
</ScrollPane>
|
|
</center>
|
|
</BorderPane>
|