当主体区域中没有行时打开上下文

发布于 2025-01-10 12:13:36 字数 272 浏览 1 评论 0原文

在我的 Nattable 中,我实现了身体区域的上下文菜单,并且工作正常。但如果主体区域中没有可用行,则不会出现上下文菜单。

即使正文区域中没有行,如何也显示上下文菜单。

我使用的代码:

 uiBindingRegistry.registerMouseDownBinding(MouseEventMatcher.bodyRightClick(SWT.NONE), new PopupMenuAction(bodyMenu));

提前致谢。

In my Nattable, I implemented context menu for body region and it is working fine. but if there is no row available in the body region context menu is not appearing.

How to make context menu appear even when there is no rows in the body region.

Code I used:

 uiBindingRegistry.registerMouseDownBinding(MouseEventMatcher.bodyRightClick(SWT.NONE), new PopupMenuAction(bodyMenu));

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2025-01-17 12:13:36

好吧,如果主体区域中没有行,则实际上没有主体区域。因此,您无法使用 NatTable 上下文菜单功能在空白区域打开上下文菜单。实际上,这个空白区域甚至不是 NatTable 术语中的主体,它是 Canvas 的区域。也就是说,在标题下方的空白区域获取上下文菜单的唯一方法是以 SWT 方式配置弹出菜单。

Well, if there are no rows in the body region, you actually do not have a body region. Therefore you can't use the NatTable context menu functionality to open a context menu on the empty area. Actually that empty area is not even a body in NatTable terms, it is the area of the Canvas. That said, the only way to get a context menu on the empty area below the header is to configure a popup menu the SWT way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文