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.HttpUploadController">
|
|
<children>
|
|
<Label layoutX="190.0" layoutY="157.0" text="选择文件:" />
|
|
<Button fx:id="upload_button" layoutX="306.0" layoutY="153.0" mnemonicParsing="false" text="Button" />
|
|
<TextArea fx:id="upload_result" layoutX="306.0" layoutY="274.0" prefHeight="200.0" prefWidth="776.0" AnchorPane.bottomAnchor="175.0" AnchorPane.leftAnchor="306.0" AnchorPane.rightAnchor="118.0" AnchorPane.topAnchor="274.0" />
|
|
<Label layoutX="190.0" layoutY="266.0" text="上传结果:" />
|
|
<Label layoutX="190.0" layoutY="85.0" text="上传接口:" />
|
|
<TextField fx:id="url" layoutX="306.0" layoutY="81.0" prefHeight="25.0" prefWidth="776.0" AnchorPane.leftAnchor="306.0" AnchorPane.rightAnchor="118.0" />
|
|
</children>
|
|
</AnchorPane>
|