mystyle-java-fx-tools/src/main/resources/fxml/socket-server.fxml

22 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 fx:controller="com.zhangmeng.tools.controller.SocketServerController" prefHeight="649.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" >
<children>
<Label layoutX="105.0" layoutY="34.0" text="端口:" />
<TextField fx:id="port" layoutX="157.0" layoutY="30.0" />
<Label layoutX="80.0" layoutY="86.0" text="日志展示:" />
<Button fx:id="start" layoutX="345.0" layoutY="30.0" mnemonicParsing="false" text="启动" />
<Button fx:id="stop" layoutX="408.0" layoutY="30.0" mnemonicParsing="false" text="停止" />
<Label layoutX="506.0" layoutY="34.0" text="服务状态:" />
<TextField fx:id="server_status" layoutX="574.0" layoutY="30.0" />
<TextArea fx:id="message_show" layoutX="157.0" layoutY="95.0" prefHeight="523.0" prefWidth="1009.0" AnchorPane.bottomAnchor="31.0" AnchorPane.leftAnchor="157.0" AnchorPane.rightAnchor="34.0" AnchorPane.topAnchor="95.0" />
</children>
</AnchorPane>