Created
June 19, 2018 20:35
-
-
Save ityulkanov/149d573b498fb110102cf31d18f92fba to your computer and use it in GitHub Desktop.
каталог UI
This file contains hidden or 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.*?> | |
<?import javafx.geometry.Insets?> | |
<?import javafx.scene.layout.GridPane?> | |
<?import javafx.scene.control.Button?> | |
<?import javafx.scene.control.Label?> | |
<GridPane alignment="center" hgap="10" prefHeight="385.0" prefWidth="589.0" vgap="10" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller"> | |
<columnConstraints> | |
<ColumnConstraints /> | |
<ColumnConstraints /> | |
<ColumnConstraints /> | |
<ColumnConstraints /> | |
</columnConstraints> | |
<rowConstraints> | |
<RowConstraints /> | |
<RowConstraints /> | |
</rowConstraints> | |
<children> | |
<HBox prefHeight="375.0" prefWidth="578.0" GridPane.rowIndex="1"> | |
<children> | |
<TableView fx:id="tvData" prefHeight="375.0" prefWidth="397.0"> | |
<columns> | |
<TableColumn fx:id="tcId" prefWidth="27.0" text="N1" /> | |
<TableColumn fx:id="tcTitle" prefWidth="128.0" text="Название" /> | |
<TableColumn fx:id="tcAuthor" prefWidth="98.0" text="Автор" /> | |
<TableColumn fx:id="tcYear" prefWidth="143.0" text="Год" /> | |
</columns> | |
</TableView> | |
<VBox prefHeight="375.0" prefWidth="191.0" HBox.hgrow="ALWAYS"> | |
<children> | |
<Label text="ID" /> | |
<TextField fx:id="tfId" /> | |
<Label text="Title" /> | |
<TextField fx:id="tfTitle" /> | |
<Label text="Author" /> | |
<TextField fx:id="tfAuthor" /> | |
<Label text="Year" /> | |
<TextField fx:id="tfYear" /> | |
<Button fx:id="btnAdd" mnemonicParsing="false" onAction="#onClickAdd" prefHeight="20.0" prefWidth="181.0" text="Add" /> | |
<Button fx:id="btnOpen" mnemonicParsing="false" onAction="#onclickOpen" prefHeight="11.0" prefWidth="181.0" text="Open" VBox.vgrow="ALWAYS"> | |
<VBox.margin> | |
<Insets top="10.0" /> | |
</VBox.margin> | |
</Button> | |
<Button fx:id="btnChoose" mnemonicParsing="false" onAction="#onClickSelect" prefHeight="16.0" prefWidth="181.0" text="Choose" /> | |
<Pane fx:id="barChartPane" prefHeight="200.0" prefWidth="200.0" /> | |
</children> | |
<HBox.margin> | |
<Insets left="10.0" /> | |
</HBox.margin> | |
</VBox> | |
</children> | |
</HBox> | |
<GridPane fx:id="" GridPane.columnIndex="3" GridPane.rowIndex="1"> | |
<columnConstraints> | |
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | |
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> | |
</columnConstraints> | |
<rowConstraints> | |
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | |
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | |
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> | |
</rowConstraints> | |
<children> | |
<Pane fx:id="barChartPane1" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="500.0" prefWidth="90.0" GridPane.rowIndex="1" /> | |
</children> | |
</GridPane> | |
</children> | |
</GridPane> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment