2023-02-15 09:08: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.HomeController">
|
|
|
|
|
<children>
|
|
|
|
|
<MenuBar layoutX="14.0" layoutY="27.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
|
|
|
<menus>
|
2023-02-15 09:33:40 +00:00
|
|
|
<Menu mnemonicParsing="false" text="加密工具">
|
2023-02-15 09:08:22 +00:00
|
|
|
<items>
|
2023-02-15 09:33:40 +00:00
|
|
|
<MenuItem mnemonicParsing="false" text="md5 加密" onAction="#md5_menu_item" />
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="spring security 加密" onAction="#spring_security_menu_item"/>
|
2023-02-15 09:08:22 +00:00
|
|
|
</items>
|
|
|
|
|
</Menu>
|
|
|
|
|
<Menu mnemonicParsing="false" text="Edit">
|
|
|
|
|
<items>
|
|
|
|
|
<MenuItem mnemonicParsing="false" text="Delete" />
|
|
|
|
|
</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" AnchorPane.topAnchor="25.0">
|
|
|
|
|
<items>
|
|
|
|
|
<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>
|