mystyle-java-fx-tools/src/main/resources/fxml/edit_plus_code.fxml

17 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-09-21 10:14:49 +00:00
<?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.EditPlusController">
<children>
<Label layoutX="157.0" layoutY="110.0" text="用户名:" AnchorPane.leftAnchor="157.0" AnchorPane.rightAnchor="1004.0" AnchorPane.topAnchor="110.0" />
<TextField fx:id="username" layoutX="226.0" layoutY="106.0" prefHeight="25.0" prefWidth="845.0" promptText="用户名" AnchorPane.leftAnchor="226.0" AnchorPane.rightAnchor="129.0" AnchorPane.topAnchor="106.0" />
<TextArea fx:id="code_res" layoutX="226.0" layoutY="174.0" prefHeight="200.0" prefWidth="845.0" promptText="注册码生成结果" AnchorPane.bottomAnchor="275.0" AnchorPane.leftAnchor="226.0" AnchorPane.rightAnchor="129.0" AnchorPane.topAnchor="174.0" />
<Label layoutX="157.0" layoutY="174.0" text="注册码:" AnchorPane.leftAnchor="157.0" AnchorPane.rightAnchor="1004.0" />
<Button fx:id="gen" layoutX="573.0" layoutY="457.0" mnemonicParsing="false" text="生成" AnchorPane.bottomAnchor="167.0" />
</children>
</AnchorPane>