Xml 层 -> 上-6ren">
gpt4 book ai didi

java - 将菜单项添加到 Netbeans 平台菜单栏

转载 作者:行者123 更新时间:2023-11-30 03:04:07 25 4
gpt4 key购买 nike

我正在尝试为我的 netbeans 平台项目(我正在启动)的模块创建一个模拟菜单。

我想在"file"中创建一个新条目“新建”,其中包含“新项目”和“新模块”。

在重要文件 -> Xml 层 -> 上下文中的该层 -> 菜单栏 -> 文件中,我创建了一个新文件夹“New”,它按应有的方式显示。

然后我添加了两个空文件“新项目”和“新模块”,但它们没有显示。

这是layer.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE filesystem PUBLIC "-//NetBeans//DTD Filesystem 1.2//EN" "http://www.netbeans.org/dtds/filesystem-1_2.dtd">
<filesystem>
<folder name="Actions">
<folder name="File"/>
</folder>
<folder name="Menu">
<folder name="File">
<folder name="New">
<file name="New Module" url="New Module_2">
<attr name="requireProject" boolvalue="false"/>
<attr name="position" intvalue="800"/>
</file>
<file name="New Project" url="New Project_3">
<attr name="requireProject" boolvalue="false"/>
<attr name="position" intvalue="600"/>
</file>
</folder>
</folder>
</folder>
</filesystem>

我已经多次删除和创建这些文件,因此有了后缀。我唯一添加的就是位置。

我想我要么遗漏了一些东西,要么误解了一些东西。我已阅读文档,但找不到答案。

那么,如何添加和显示菜单项?

最佳答案

我认为你的<file name应该指向 Action 的实例。例如:

<file name="org-netbeans-core-actions-SystemExit.shadow">
<attr name="originalFile" stringvalue="Actions/System/org-netbeans-core-actions-SystemExit.instance"/>
<attr name="position" intvalue="2600"/>
</file>

来自 NetBeans 文档:

The main menu of the application is composed by reading Menu/ folder in the layer. A sub folder is treated as a sub menu. Instances of individual files (usually .instance or .shadow) may then represent Action or JMenuItem or JSeparator.

来源:http://bits.netbeans.org/dev/javadoc/layers.html

也在这里: http://wiki.netbeans.org/DevFaqSystemFilesystem

您可以使用向导轻松创建操作。

关于java - 将菜单项添加到 Netbeans 平台菜单栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35221492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com