20 lines
1.4 KiB
Plaintext
20 lines
1.4 KiB
Plaintext
|
|
<?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 fx:id="root" 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.Md5Controller">
|
||
|
|
<children>
|
||
|
|
<Label layoutX="169.0" layoutY="102.0" text="将要加密的字符:" AnchorPane.leftAnchor="169.0" />
|
||
|
|
<TextField fx:id="text_filed" layoutX="300.0" layoutY="98.0" prefHeight="25.0" prefWidth="619.0" AnchorPane.leftAnchor="300.0" AnchorPane.rightAnchor="281.0" AnchorPane.topAnchor="98.0" />
|
||
|
|
<Button fx:id="button" layoutX="934.0" layoutY="98.0" mnemonicParsing="false" text="加密" AnchorPane.rightAnchor="226.0" />
|
||
|
|
<Label layoutX="169.0" layoutY="160.0" text="加密后的字符 32位:" />
|
||
|
|
<TextArea fx:id="md5_32" layoutX="300.0" layoutY="160.0" prefHeight="200.0" prefWidth="619.0" AnchorPane.leftAnchor="300.0" AnchorPane.rightAnchor="281.0" AnchorPane.topAnchor="160.0" />
|
||
|
|
<Label layoutX="169.0" layoutY="377.0" text="将要加密的字符 16位:" />
|
||
|
|
<TextArea fx:id="md5_16" layoutX="300.0" layoutY="377.0" prefHeight="215.0" prefWidth="619.0" AnchorPane.leftAnchor="300.0" AnchorPane.rightAnchor="281.0" AnchorPane.topAnchor="377.0" />
|
||
|
|
</children>
|
||
|
|
</AnchorPane>
|