21 lines
1.5 KiB
XML
21 lines
1.5 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.NettyClientController">
|
|
<children>
|
|
<Label layoutX="98.0" layoutY="92.0" text="链接地址:" AnchorPane.topAnchor="92.0" />
|
|
<TextField fx:id="url_address" layoutX="169.0" layoutY="88.0" prefHeight="25.0" prefWidth="431.0" />
|
|
<Label layoutX="626.0" layoutY="92.0" text="端口:" />
|
|
<TextField fx:id="port" layoutX="660.0" layoutY="88.0" />
|
|
<TextArea fx:id="send_msg" layoutX="98.0" layoutY="169.0" prefHeight="127.0" prefWidth="1031.0" AnchorPane.bottomAnchor="353.0" AnchorPane.leftAnchor="98.0" AnchorPane.rightAnchor="71.0" AnchorPane.topAnchor="169.0" />
|
|
<Button fx:id="send" layoutX="653.0" layoutY="312.0" mnemonicParsing="false" text="发送" AnchorPane.bottomAnchor="312.0" AnchorPane.leftAnchor="653.0" />
|
|
<Button fx:id="connect" layoutX="845.0" layoutY="88.0" mnemonicParsing="false" text="连接" />
|
|
<TextArea fx:id="result_show" layoutX="98.0" layoutY="410.0" prefHeight="245.0" prefWidth="1031.0" AnchorPane.bottomAnchor="39.0" AnchorPane.leftAnchor="98.0" AnchorPane.rightAnchor="71.0" />
|
|
</children>
|
|
</AnchorPane>
|