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.
48 lines
1.9 KiB
48 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.*?>
|
|
<?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.OptionVueController">
|
|
<center>
|
|
<VBox prefHeight="200" prefWidth="300">
|
|
<children>
|
|
<Label text="选择生成的Vue模板" prefHeight="50.0" prefWidth="300.0"/>
|
|
|
|
<RadioButton mnemonicParsing="false" text="vue-simple" id="1" selected="true">
|
|
<toggleGroup>
|
|
<ToggleGroup fx:id="type"/>
|
|
</toggleGroup>
|
|
<padding>
|
|
<Insets bottom="5.0"/>
|
|
</padding>
|
|
</RadioButton>
|
|
<RadioButton mnemonicParsing="false" text="vue-element-admin" id="2" toggleGroup="$type">
|
|
<padding>
|
|
<Insets bottom="5.0"/>
|
|
</padding>
|
|
</RadioButton>
|
|
<RadioButton mnemonicParsing="false" text="vue-admin-template" toggleGroup="$type">
|
|
<padding>
|
|
<Insets bottom="5.0"/>
|
|
</padding>
|
|
</RadioButton>
|
|
</children>
|
|
|
|
<padding>
|
|
<Insets bottom="3.0" left="30.0" right="10.0" top="10.0"/>
|
|
</padding>
|
|
</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>
|