16 lines
915 B
XML
16 lines
915 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.tools.controller.MusicSetController">
|
|
<children>
|
|
<Label layoutX="84.0" layoutY="131.0" text="歌曲目录" AnchorPane.topAnchor="131.0" />
|
|
<TextField fx:id="text_file" layoutX="148.0" layoutY="127.0" prefHeight="25.0" prefWidth="305.0" />
|
|
<Button fx:id="file_choose_button" layoutX="472.0" layoutY="127.0" mnemonicParsing="false" onAction="#choose_file" text="Button" />
|
|
<Button layoutX="256.0" layoutY="250.0" mnemonicParsing="false" onAction="#commit" prefHeight="31.0" prefWidth="105.0" text="应用" />
|
|
</children>
|
|
</AnchorPane>
|