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.
61 lines
2.6 KiB
61 lines
2.6 KiB
6 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
|
||
|
<?import javafx.geometry.*?>
|
||
|
<?import javafx.scene.control.*?>
|
||
|
<?import javafx.scene.layout.*?>
|
||
|
<BorderPane fx:controller="xyz.wbsite.dbtool.javafx.ctrl.GenerateOptionController" prefHeight="199.0" prefWidth="468.0"
|
||
|
xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1">
|
||
|
<center>
|
||
|
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="173.0"
|
||
|
prefWidth="468.0">
|
||
|
<children>
|
||
|
<Label text="框架">
|
||
|
<padding>
|
||
|
<Insets bottom="3.0" left="10.0" right="10.0" top="3.0"/>
|
||
|
</padding>
|
||
|
</Label>
|
||
|
<HBox prefHeight="40.0" prefWidth="600.0">
|
||
|
<children>
|
||
|
|
||
|
<RadioButton mnemonicParsing="false" selected="true" text="SpringBoot">
|
||
|
<toggleGroup>
|
||
|
<ToggleGroup fx:id="type"/>
|
||
|
</toggleGroup>
|
||
|
</RadioButton>
|
||
|
<!--<RadioButton mnemonicParsing="false" text="SpringMVC_Mybatis" toggleGroup="$type" selected="false"/>-->
|
||
|
</children>
|
||
|
<padding>
|
||
|
<Insets bottom="3.0" left="20.0" right="10.0" top="3.0"/>
|
||
|
</padding>
|
||
|
</HBox>
|
||
|
<Label text="数据库">
|
||
|
<padding>
|
||
|
<Insets bottom="3.0" left="10.0" right="10.0" top="3.0"/>
|
||
|
</padding>
|
||
|
</Label>
|
||
|
<HBox prefHeight="40.0" prefWidth="600.0">
|
||
|
<RadioButton mnemonicParsing="false" text="Oracle">
|
||
|
<toggleGroup>
|
||
|
<ToggleGroup fx:id="db"/>
|
||
|
</toggleGroup>
|
||
|
</RadioButton>
|
||
|
<RadioButton mnemonicParsing="false" text="MySql" selected="true" toggleGroup="$db"/>
|
||
|
<padding>
|
||
|
<Insets bottom="3.0" left="20.0" right="10.0" top="3.0"/>
|
||
|
</padding>
|
||
|
</HBox>
|
||
|
|
||
|
</children>
|
||
|
</VBox>
|
||
|
</center>
|
||
|
<bottom>
|
||
|
<Pane prefHeight="38.0" prefWidth="468.0" BorderPane.alignment="CENTER">
|
||
|
<children>
|
||
|
<Button layoutX="136.0" layoutY="9.0" mnemonicParsing="false" text="确认" fx:id="ok"/>
|
||
|
<Button layoutX="266.0" layoutY="9.0" mnemonicParsing="false" text="取消" fx:id="cancel"/>
|
||
|
</children>
|
||
|
</Pane>
|
||
|
</bottom>
|
||
|
</BorderPane>
|