29 lines
2.1 KiB
XML
29 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.ListView?>
|
|
<?import javafx.scene.control.PasswordField?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.text.Text?>
|
|
|
|
<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.FtpServerController">
|
|
<children>
|
|
<Label layoutX="78.0" layoutY="98.0" text="用户名:" />
|
|
<Label layoutX="84.0" layoutY="154.0" text="密码:" />
|
|
<Button fx:id="server_start" layoutX="443.0" layoutY="400.0" mnemonicParsing="false" text="启动ftp服务" AnchorPane.bottomAnchor="224.0" />
|
|
<Button fx:id="server_stop" layoutX="614.0" layoutY="400.0" mnemonicParsing="false" text="停止服务" AnchorPane.bottomAnchor="224.0" />
|
|
<TextField fx:id="user_name" layoutX="131.0" layoutY="94.0" prefHeight="25.0" prefWidth="331.0" />
|
|
<PasswordField fx:id="password" layoutX="131.0" layoutY="150.0" prefHeight="25.0" prefWidth="331.0" />
|
|
<ListView fx:id="server_list" layoutX="629.0" layoutY="94.0" prefHeight="224.0" prefWidth="501.0" AnchorPane.bottomAnchor="331.0" AnchorPane.leftAnchor="629.0" AnchorPane.rightAnchor="70.0" AnchorPane.topAnchor="94.0" />
|
|
<Label layoutX="563.0" layoutY="98.0" text="服务列表:" />
|
|
<Label layoutX="59.0" layoutY="212.0" text="资源目录:" />
|
|
<TextField fx:id="resoureces_dir" layoutX="131.0" layoutY="208.0" prefHeight="25.0" prefWidth="331.0" />
|
|
<Button fx:id="add_user" layoutX="258.0" layoutY="287.0" mnemonicParsing="false" text="添加" />
|
|
<Label layoutX="82.0" layoutY="404.0" text="服务状态:" AnchorPane.bottomAnchor="228.0" />
|
|
<Text fx:id="server_status" layoutX="155.0" layoutY="417.0" strokeType="OUTSIDE" strokeWidth="0.0" text="服务状态" AnchorPane.bottomAnchor="228.0" />
|
|
<Button fx:id="choose_file_dir" layoutX="477.0" layoutY="208.0" mnemonicParsing="false" text="选择文件夹" />
|
|
</children>
|
|
</AnchorPane>
|