Netbeans add popup menu with visual editor(Netbeans 添加带有可视化编辑器的弹出菜单)
问题描述
我需要将 popup menu 添加到 JFrame,但是当我将该组件放在那里时,它就会消失.我可以在代码中看到它,但没有办法编辑它的任何内容.有没有办法像说 menu bar 那样编辑它?如果这很重要,我会使用 Netbeans 7.2.1.
I need to add a popup menu to the JFrame, but when I drop that component there it just dissappears. I can see it in code, but there is no way to edit anything about it. Is there a way I can edit it like say menu bar?
I use Netbeans 7.2.1 if that is important.
PS - 是的,我试过谷歌搜索,只发现 this,但它没有帮助......
PS - Yes, I tried googling and found only this, but it is not helping...
推荐答案
好吧,我自己想通了.
- 打开
Windows ->导航->Navigator它将显示一个导航器窗口,其中包含当前在 jFrame 上的所有组件. - 在该导航器窗口中,然后单击
Other components. - 其中将列出所有非可视组件,包括
jPopopMenu. - 通过单击这些组件中的任何一个,可以编辑它们的属性.
- 可以通过
双击直观地编辑弹出菜单.然后它会弹出可视菜单生成器.
- Open
Windows -> Navigation -> Navigatorit will show a navigator window with all components currently on jFrame. - In that navigator window then click
Other components. - In there all non visual components including
jPopopMenuwill be listed. - By clicking on any of these components it is possible to edit their properties.
- Editing the popup menu visually is possible by
double clickingon it. It will then bring up visual menu builder.
这篇关于Netbeans 添加带有可视化编辑器的弹出菜单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Netbeans 添加带有可视化编辑器的弹出菜单
基础教程推荐
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- Struts2 URL 无法访问 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
