我正在使用Eclipse RCP构建桌面应用程序。当用户调用弹出菜单时,我想向菜单中添加一些项目。类似问题的“建议措施”列表。弹出窗口在表格上,并且上面已经有命令。
什么是实现此目标的正确方法?

最佳答案

在您的ViewPart中(例如),您可以添加

 public void createPartControl(Composite parent) {
    ...
    final Action a = new Action("") {};
    final MenuManager mgr = new MenuManager();
    mgr.setRemoveAllWhenShown(true);

    mgr.addMenuListener(new IMenuListener() {
        public void menuAboutToShow(IMenuManager manager) {
         final IStructuredSelection selection = (IStructuredSelection) listViewer
                        .getSelection();
        if (!selection.isEmpty()) {
                       // example Action, here delete...
            Action deleteAction = new Action("Delete") {
              public void run() {
              ....
                              }
            };
            mgr.add(deleteAction);

                       // *** decide here which actions to add by  ***
                       // *** evaluation of some of your variables ***

            mgr.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS));

        }
        });
        tableViewer.getControl().setMenu(
                mgr.createContextMenu(tableViewer.getControl()));
....
}

关于java - 动态上下文菜单项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2744613/

10-10 23:08