You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.5 KiB

6 years ago
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane prefHeight="170.0" prefWidth="300.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="xyz.wbsite.dbtool.javafx.ctrl.VueOptionController">
<center>
<VBox prefHeight="120" prefWidth="300">
<children>
<GridPane prefHeight="50.0" prefWidth="300.0" BorderPane.alignment="CENTER">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" prefWidth="80.0"/>
<ColumnConstraints hgrow="SOMETIMES" prefWidth="200.0"/>
</columnConstraints>
<rowConstraints>
<RowConstraints maxHeight="40.0" minHeight="40.0" prefHeight="40.0" vgrow="SOMETIMES"/>
</rowConstraints>
<children>
<Label text="项目名称" GridPane.halignment="CENTER" GridPane.rowIndex="0"
GridPane.valignment="CENTER"/>
<TextField fx:id="name" text="my-app" GridPane.columnIndex="1" GridPane.rowIndex="0"/>
</children>
<opaqueInsets>
<Insets/>
</opaqueInsets>
<VBox.margin>
<Insets left="10.0" right="10.0"/>
</VBox.margin>
</GridPane>
<HBox prefHeight="50.0" prefWidth="300.0">
<children>
6 years ago
<CheckBox fx:id="elementUI" mnemonicParsing="false" selected="true" text="ElementUI">
6 years ago
</CheckBox>
<CheckBox fx:id="iView" mnemonicParsing="false" selected="false" text="iView">
</CheckBox>
</children>
<padding>
<Insets bottom="3.0" left="30.0" right="10.0" top="10.0"/>
</padding>
</HBox>
</children>
</VBox>
</center>
<bottom>
<Pane prefHeight="50.0" prefWidth="300.0" BorderPane.alignment="CENTER">
<children>
<Button fx:id="ok" layoutX="75.0" layoutY="9.0" mnemonicParsing="false" text="确认"/>
<Button fx:id="cancel" layoutX="185.0" layoutY="9.0" mnemonicParsing="false" text="取消"/>
</children>
</Pane>
</bottom>
</BorderPane>

Powered by TurnKey Linux.