60 lines
3.3 KiB
XML
60 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
|
|
<GridPane prefHeight="800.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/23.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="top.r3944realms.docchecktoolrefactored.ui.module.DuplicateDocumentPaneController">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="288.0" minWidth="0.0" percentWidth="0.0" prefWidth="82.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1263.9999633789064" minWidth="0.0" prefWidth="745.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="873.0" minWidth="0.0" prefWidth="82.0" />
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="873.0" minWidth="10.0" prefWidth="407.0" />
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="173.0" minHeight="10.0" prefHeight="53.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="173.0" minHeight="10.0" prefHeight="83.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="173.0" minHeight="10.0" prefHeight="31.0" vgrow="SOMETIMES" />
|
|
<RowConstraints maxHeight="549.0" minHeight="10.0" prefHeight="549.0" vgrow="SOMETIMES" />
|
|
</rowConstraints>
|
|
<children>
|
|
<TextArea fx:id="result1B" GridPane.columnSpan="3" GridPane.rowIndex="3">
|
|
<GridPane.margin>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</GridPane.margin>
|
|
</TextArea>
|
|
<Label text="载入文件夹:" />
|
|
<TextField fx:id="loadFolder1TF" GridPane.columnIndex="1">
|
|
<GridPane.margin>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</GridPane.margin>
|
|
</TextField>
|
|
<Button fx:id="selectLoadFolder1B" mnemonicParsing="false" onAction="#onSelectFolder" text="选择文件夹" GridPane.columnIndex="2" GridPane.columnSpan="2">
|
|
<padding>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</padding>
|
|
<GridPane.margin>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</GridPane.margin></Button>
|
|
<Button fx:id="start1B" minWidth="-Infinity" mnemonicParsing="false" onAction="#onStart" prefHeight="75.0" prefWidth="800.0" text="开始检查" GridPane.columnSpan="4" GridPane.rowIndex="1">
|
|
<GridPane.margin>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</GridPane.margin>
|
|
</Button>
|
|
<Label text="反馈结果:" GridPane.rowIndex="2" />
|
|
<TextArea editable="false" prefHeight="530.0" prefWidth="300.0" text="在此反馈结果: 如无重复文件,则反馈:无重复文件; 如有重复文件,则在此反馈档号。 " GridPane.columnIndex="3" GridPane.columnSpan="2" GridPane.rowIndex="3">
|
|
<GridPane.margin>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</GridPane.margin>
|
|
</TextArea>
|
|
</children>
|
|
<padding>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</padding>
|
|
</GridPane>
|