在 java 中向菜单按钮添加功能
我是 Java 新手,我想知道如何向菜单项添加功能?
我希望它做的是将两个值设置为 0。
这是我当前的代码:
JMenuItem clear = new JMenuItem("Clear");
Options.add(clear);
I am new to Java and I was wondering how to add functionality to menu item?
What I would like it to do, is to set two values to 0.
This is the code I have currently:
JMenuItem clear = new JMenuItem("Clear");
Options.add(clear);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望它可以帮助您入门
Hope it help you get started
您需要添加一个 ActionListener 。这是一个必须实现名为
actionPerformed
的方法的接口。例如,
这将添加一个匿名
ActionListener
,一旦单击JMenuItem
,就会调用该匿名ActionListener
。希望有帮助。
You will need to add an ActionListener. This is an interface which must implement a method called
actionPerformed
.E.g
This will add an anonymous
ActionListener
that is invoked once theJMenuItem
is clicked.Hope that helps.