Created
December 6, 2017 06:02
-
-
Save aoetk/026ef6f7094ad0f1aaeeeb33082cad97 to your computer and use it in GitHub Desktop.
GridPaneのサンプル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?import javafx.geometry.*?> | |
<?import javafx.scene.control.*?> | |
<?import java.lang.*?> | |
<?import javafx.scene.layout.*?> | |
<GridPane hgap="10.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" vgap="10.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.40"> | |
<columnConstraints> | |
<ColumnConstraints hgrow="NEVER" minWidth="10.0" /> | |
<ColumnConstraints hgrow="ALWAYS" minWidth="10.0" prefWidth="100.0" /> | |
</columnConstraints> | |
<rowConstraints> | |
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="NEVER" /> | |
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="ALWAYS" /> | |
</rowConstraints> | |
<children> | |
<Label text="Label" /> | |
<TextField GridPane.columnIndex="1" /> | |
<Label text="Label" GridPane.rowIndex="1" /> | |
<TableView prefHeight="200.0" prefWidth="200.0" GridPane.columnIndex="1" GridPane.rowIndex="1"> | |
<columns> | |
<TableColumn prefWidth="75.0" text="C1" /> | |
<TableColumn prefWidth="75.0" text="C2" /> | |
<TableColumn prefWidth="75.0" text="Column X" /> | |
</columns> | |
</TableView> | |
</children> | |
<padding> | |
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" /> | |
</padding> | |
</GridPane> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment