Pull requests prepared
This commit is contained in:
parent
b0c6032f62
commit
fb52bca2ac
48 changed files with 552 additions and 0 deletions
14
target/classes/fr/myny/gui/secondary.fxml
Normal file
14
target/classes/fr/myny/gui/secondary.fxml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.layout.VBox?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.control.Button?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
|
||||
<VBox alignment="CENTER" spacing="20.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.myny.gui.SecondaryController">
|
||||
<Label text="Secondary View" />
|
||||
<Button text="Switch to Primary View" onAction="#switchToPrimary" />
|
||||
<padding>
|
||||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
|
||||
</padding>
|
||||
</VBox>
|
||||
Reference in a new issue