| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Do not edit this file it is generated by e(fx)clipse from ../sample-src/sample/Sample.fxgraph | |
| --> | |
| <?import java.lang.*?> | |
| <?import javafx.geometry.Insets?> | |
| <?import javafx.scene.control.Button?> | |
| <?import javafx.scene.control.Label?> | |
| <?import javafx.scene.layout.BorderPane?> | |
| <?import javafx.scene.layout.GridPane?> | |
| <?import javafx.scene.layout.HBox?> | |
| <?import javafx.scene.layout.VBox?> | |
| <BorderPane xmlns:fx="http://javafx.com/fxml"> | |
| <center> | |
| <Button text="Hello World"/> | |
| </center> | |
| <bottom> | |
| <HBox> | |
| <children> | |
| <Label text="Label 1" minWidth="100" HBox.hgrow="ALWAYS"/> | |
| <Label text="Label 1"> | |
| <HBox.margin> | |
| <Insets bottom="5"/> | |
| </HBox.margin> | |
| </Label> | |
| <VBox> | |
| <Label text="Def 1"/> | |
| <Label text="Def 2"/> | |
| </VBox> | |
| <VBox> | |
| <children> | |
| <Label text="Label 1" VBox.vgrow="SOMETIMES"/> | |
| <GridPane> | |
| <children> | |
| <Label text="In Grid 0/0" GridPane.columnIndex="0" GridPane.rowIndex="0"/> | |
| <Label text="In Grid 0/1" GridPane.columnIndex="0" GridPane.rowIndex="1"/> | |
| </children> | |
| </GridPane> | |
| </children> | |
| </VBox> | |
| </children> | |
| </HBox> | |
| </bottom> | |
| </BorderPane> |