17 lines
1.0 KiB
XML
17 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ComboBox?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?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.VipParserController">
|
|
<children>
|
|
<Label layoutX="165.0" layoutY="273.0" text="将要解析的视频地址" AnchorPane.leftAnchor="165.0" />
|
|
<TextField fx:id="input_text" layoutX="315.0" layoutY="269.0" prefHeight="25.0" prefWidth="457.0" AnchorPane.leftAnchor="315.0" />
|
|
<ComboBox fx:id="comboBox" layoutX="781.0" layoutY="269.0" prefHeight="25.0" prefWidth="246.0" AnchorPane.leftAnchor="781.0" AnchorPane.topAnchor="269.0" />
|
|
<Button layoutX="1043.0" layoutY="269.0" mnemonicParsing="false" onAction="#player" text="解析" AnchorPane.leftAnchor="1043.0" AnchorPane.topAnchor="269.0" />
|
|
</children>
|
|
</AnchorPane>
|