Quick Analysis右键单击上下文菜单会被Quick Analysis默认值覆盖

saf*_*jrz 3 c# excel vsto

我正在按照此示例为VSTO创建一个excel加载项的自定义右键单击自定义菜单,并在特定条件下显示它(右键单击Excel命名表的范围内).

当我在命名表格范围外单击鼠标右键时,我从示例中修改的代码版本就像一个魅力:

在此输入图像描述

但是当您在命名表范围内右键单击时,它不会显示:

在此输入图像描述

我想它与快速分析功能有关,干扰了我的自定义上下文菜单覆盖.这是我在ThisAddin.cs中使用的代码:

 void Application_SheetBeforeRightClick(object worksheet, Excel.Range range, ref bool cancel)
{
  GetCellContextMenu().Reset(); // reset the cell context menu back to the default
  // If the selected range belongs within a named excel table we display the refresh menu item at the right click context menu.
  if (true) //range.IntersectsWithAnyExcelTable()) <-- this code works fine but I commented it out for the purpose of showing the problem (in this case the custom popup meny should appear ALWAYS):
  {
    const OfficeCore.MsoControlType menuItem = OfficeCore.MsoControlType.msoControlButton;
    var refreshMenuItem = (OfficeCore.CommandBarButton)GetCellContextMenu().Controls.Add(menuItem, missing, missing, 1, true);// where missing = global::System.Type.Missing;
        refreshMenuItem.Style = OfficeCore.MsoButtonStyle.msoButtonCaption;
        refreshMenuItem.Caption = "Refresh My Data";
        refreshMenuItem.Click -= RefreshMenuItemClick;
        refreshMenuItem.Click += RefreshMenuItemClick;
      }
    }
Run Code Online (Sandbox Code Playgroud)

并且不要忘记在加载项启动时订阅事件:

Application.SheetBeforeRightClick += Application_SheetBeforeRightClick;
Run Code Online (Sandbox Code Playgroud)

我怎么能:

  1. 尽管进行了快速分析,但仍显示我的自定义菜单.

  2. 覆盖快速分析刷新按钮功能(afaiu这是不可能的.)

小智 9

Excel对表使用单独的右键单击菜单.

我只会说VBA,所以你必须翻译......

右键单击"普通"单元格时,CommandBars("Cell")将使用菜单.

在表格中右键单击时,将使用CommandBars("List Range Popup")菜单.