Java Reference
In-Depth Information
BorderPane.alignment="CENTER"
VBox.vgrow="ALWAYS">
<columns>
<TreeTableColumn fx:id="category"
editable="false"
prefWidth="125.0"
text="Category"/>
<TreeTableColumn fx:id="name"
editable="false"
prefWidth="75.0"
text="Name"/>
</columns>
</TreeTableView>
</children>
<BorderPane.margin>
<Insets/>
</BorderPane.margin>
</VBox>
</left>
<center>
<fx:include fx:id="details"
source="IncludeExampleDetail.fxml"/>
</center>
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0"/>
</padding>
</BorderPane>
Listing 3-21. IncludeExampleDetail.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<VBox maxHeight="-Infinity"
maxWidth="-Infinity"
minHeight="-Infinity"
minWidth="-Infinity"
prefHeight="346.0"
prefWidth="384.0"
spacing="10.0"
xmlns=" http://javafx.com/javafx/8 "
xmlns:fx=" http://javafx.com/fxml/1 "
fx:controller="IncludeExampleDetailController">
<children>
<Label text="Category:">
<font>
<Font name="System Bold" size="12.0"/>
</font>
</Label>
Search WWH ::




Custom Search