You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.ListView?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
|
|
<BorderPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="view.MainWindow">
|
|
<left>
|
|
<ListView fx:id="birdsLV"/>
|
|
</left>
|
|
<center>
|
|
<VBox prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
|
|
<Label fx:id="nameLbl"/>
|
|
<Label fx:id="dobLbl"/>
|
|
<Label fx:id="ageLbl"/>
|
|
<Label fx:id="colorLbl"/>
|
|
<Label fx:id="hungerLbl"/>
|
|
<Button alignment="CENTER" mnemonicParsing="false" onAction="#clickFeed" text="Feed"/>
|
|
</VBox>
|
|
</center>
|
|
<top>
|
|
<HBox prefHeight="100.0" prefWidth="200.0" BorderPane.alignment="CENTER">
|
|
<Label text="Today: " fx:id="dateLbl"/>
|
|
<Button mnemonicParsing="false" onAction="#clickTomorrow" text="To tomorrow"/>
|
|
</HBox>
|
|
</top>
|
|
|
|
</BorderPane>
|