2023-02-16 03:24:22 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<?import javafx.scene.control.ListView?>
|
|
|
|
|
<?import javafx.scene.control.Menu?>
|
|
|
|
|
<?import javafx.scene.control.MenuBar?>
|
|
|
|
|
<?import javafx.scene.control.MenuItem?>
|
|
|
|
|
<?import javafx.scene.control.SplitPane?>
|
|
|
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
|
|
|
|
|
|
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0"
|
|
|
|
|
prefWidth="1661.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1"
|
|
|
|
|
fx:controller="com.zhangmeng.tools.controller.PlayerController">
|
|
|
|
|
<children>
|
|
|
|
|
<MenuBar layoutX="14.0" layoutY="27.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
|
|
|
|
|
AnchorPane.topAnchor="0.0">
|
|
|
|
|
<menus>
|
|
|
|
|
<Menu mnemonicParsing="false" text="加密工具">
|
|
|
|
|
<items>
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#md5_menu_item" text="md5 加密"/>
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#spring_security_menu_item"
|
|
|
|
|
text="spring security 加密"/>
|
|
|
|
|
</items>
|
|
|
|
|
</Menu>
|
|
|
|
|
<Menu mnemonicParsing="false" text="影音工具">
|
|
|
|
|
<items>
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="视频播放" onAction="#video_menu_item"/>
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="音乐播放" onAction="#music_menu_item"/>
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="vip 视频解析" onAction="#vip_parser_menu_item"/>
|
|
|
|
|
</items>
|
|
|
|
|
</Menu>
|
|
|
|
|
<Menu mnemonicParsing="false" text="Help">
|
|
|
|
|
<items>
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="About"/>
|
|
|
|
|
</items>
|
|
|
|
|
</Menu>
|
|
|
|
|
</menus>
|
|
|
|
|
</MenuBar>
|
|
|
|
|
<SplitPane fx:id="splitPane" dividerPositions="0.5" layoutY="25.0" prefHeight="575.0" prefWidth="1200.0"
|
|
|
|
|
AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0"
|
2023-02-17 06:48:04 +00:00
|
|
|
AnchorPane.topAnchor="25.0" id="#splitPane">
|
2023-02-16 03:24:22 +00:00
|
|
|
<items>
|
|
|
|
|
<ListView id="listView" fx:id="listView" maxWidth="300.0" minWidth="200.0" prefHeight="200.0" prefWidth="200.0"/>
|
|
|
|
|
<AnchorPane prefHeight="200.0" prefWidth="200.0"/>
|
|
|
|
|
</items>
|
|
|
|
|
</SplitPane>
|
|
|
|
|
</children>
|
|
|
|
|
</AnchorPane>
|