20 lines
1.2 KiB
XML
20 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
<AnchorPane prefHeight="649.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.tools.controller.CronController">
|
|
<children>
|
|
<Label layoutX="66.0" layoutY="91.0" text="cron表达式;" />
|
|
<TextField fx:id="cron" layoutX="150.0" layoutY="87.0" prefHeight="25.0" prefWidth="677.0" />
|
|
<Button fx:id="execute" layoutX="522.0" layoutY="225.0" mnemonicParsing="false" text="执行" />
|
|
<TextArea fx:id="result_show" layoutX="75.0" layoutY="365.0" prefHeight="200.0" prefWidth="1068.0" AnchorPane.bottomAnchor="84.0" AnchorPane.leftAnchor="75.0" AnchorPane.rightAnchor="57.0" AnchorPane.topAnchor="365.0" />
|
|
<Button fx:id="verify_cron" layoutX="869.0" layoutY="87.0" mnemonicParsing="false" text="校验" />
|
|
<Label layoutX="66.0" layoutY="158.0" text="执行次数:" />
|
|
<TextField fx:id="execute_num" layoutX="150.0" layoutY="154.0" />
|
|
</children>
|
|
</AnchorPane>
|