我正在关注this example为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;
}
}
并且不要忘记在加载项启动时订阅该事件:
Application.SheetBeforeRightClick += Application_SheetBeforeRightClick;
我怎么能:
尽管快速分析正在进行,但仍显示我的自定义菜单。
覆盖快速分析刷新按钮功能(afaiu为impossible。)
答案 0 :(得分:7)
Excel使用表格的单独右键菜单。
我只会说VBA,所以你必须翻译......
右键点击&#34;正常&#34;单元格使用CommandBars("Cell")
菜单。
在表格中右键单击时,会使用CommandBars("List Range Popup")
菜单。