聆听菜单栏根项上的点击 (Vaadin)
简单而简短的问题,但我不太确定一个好的答案。 ;)
是否可以以某种方式将侦听器添加到菜单栏的根项?
我想单击“编辑”项目,并且应该触发一个事件。
Simple and short question, but I'm not so sure about a good answer. ;)
Is it somehow possible to add a Listener to the root items of a menu bar?
I'd like to click the Edit item and a event should be fired.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Vaadin API 文档:
创建一个实现 MenuBar.Command 接口的类,然后通过调用 MenuBar.addItem
您也可以像这样跳过类创建:
From Vaadin API documentation :
Create a class that implements MenuBar.Command interface and then add the root item by calling MenuBar.addItem
You can also skip the class creation like this:
如果您在 xaml 中执行操作,您不能只在元素中执行操作,例如
If you are doing in xaml, can't you just do in the element, something like
<Menu... OnClick="...">