39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
|
|
<?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>
|
||
|
|
<Menu mnemonicParsing="false" text="File">
|
||
|
|
<items>
|
||
|
|
<MenuItem mnemonicParsing="false" text="Close" />
|
||
|
|
</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>
|