如何创建带有菜单的 JButton?
我想在我的应用程序中创建一个工具栏。如果单击该工具栏上的按钮,它将弹出一个菜单,就像 Eclipse 的工具栏中一样。我不知道如何在 Swing 中执行此操作。有人可以帮我吗?我尝试过谷歌但一无所获。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在我的应用程序中创建一个工具栏。如果单击该工具栏上的按钮,它将弹出一个菜单,就像 Eclipse 的工具栏中一样。我不知道如何在 Swing 中执行此操作。有人可以帮我吗?我尝试过谷歌但一无所获。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
这在 Swing 中比实际需要的要困难得多。因此,我没有向您指出教程,而是创建了一个完整的工作示例。
This is way harder in Swing than it needs to be. So instead of pointing you to tutorials I've created a fully working example.
我不明白为什么这比需要的更难,也不明白为什么你应该使用 MouseListener。 Steve McLeod 的解决方案有效,但菜单出现的位置取决于鼠标单击的位置。为什么不像通常用于 JButton 那样使用 ActionListener。看起来既不难也不不难。
这对我来说菜单的位置与 JMenuBar 中的菜单大致相同,并且位置是一致的。您可以通过修改 menu.show() 中的 x 和 y 来以不同的方式放置它。
I don't see why this is harder than it needs to be or why you should use a MouseListener. The solution by Steve McLeod works, but where the menu appears depends on where the mouse was clicked. Why not just use an ActionListener as normally used for a JButton. It seems neither harder nor less hard.
This positions the menu about the same as a menu in a JMenuBar for me, and the position is consistent. You could place it differently by modifying the x and y in menu.show().
这是一个简单而漂亮的类
Here is a simple and nice class
我认为这与 AWT 中的相同。
您应该在该按钮上放置一个 ActionCommand,并在执行时根据鼠标坐标显示弹出菜单。
I think it's the same as in AWT.
You should put an ActionCommand on that button and when it's executed show the pop-up menu according to the mouse coordinates.
请参阅 如何使用菜单。
See the section Bringing Up a Popup Menu, in How to Use Menus.
我不确定我是否理解正确,但如果您想知道如何在 Swing 中制作工具栏,请检查此
Java 教程:如何使用工具栏 和此
Java 教程:如何使用操作
I'm not sure I understand you correctly but if you want to know how to make toolbars in Swing check this
Java Tutorials: How to Use Tool Bars and this
Java Tutorials: How to Use Actions
亚当·古德在上面问道:
事实证明这是一项测试任务。我最终用 invokeLater 解决了这个问题,以在特定情况下重新消失弹出窗口。我的解决方案还允许客户定制按钮和弹出菜单。
调用示例
Above, Adam Goode asked,
This turned out to be a testing task. I finally solved it with an invokeLater to re-vanish the popup in that particular case. My solution also allows the client to tailor the button and the popup menu.
Sample invocation