21 lines
1.3 KiB
XML
21 lines
1.3 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.control.TreeView?>
|
|
<?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.JSONViewController">
|
|
<children>
|
|
<TreeView fx:id="json_view" layoutX="129.0" layoutY="393.0" prefHeight="256.0" prefWidth="1071.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="129.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="393.0" />
|
|
<TextArea fx:id="json_str" layoutX="129.0" layoutY="104.0" prefHeight="234.0" prefWidth="1071.0" AnchorPane.leftAnchor="129.0" AnchorPane.rightAnchor="0.0" />
|
|
<TextField fx:id="path" layoutX="204.0" layoutY="58.0" prefHeight="25.0" prefWidth="350.0" />
|
|
<Label layoutX="30.0" layoutY="62.0" text="请选择json文件:" />
|
|
<Button fx:id="choose_file" layoutX="132.0" layoutY="58.0" mnemonicParsing="false" text="Button" />
|
|
<Label layoutX="48.0" layoutY="102.0" text="json字符串:" />
|
|
<Button fx:id="cover" layoutX="74.0" layoutY="353.0" mnemonicParsing="false" text="转换" />
|
|
</children>
|
|
</AnchorPane>
|