6

我尝试了 3 种不同的代码示例,但都失败了。

这是来自 MSFT 员工的代码(如何在范围上显示上下文菜单),其他两个示例的代码几乎完全相同:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
    CommandBar cellbar = this.Application.CommandBars["Cell"];
    CommandBarButton button = (CommandBarButton) cellbar.FindControl(MsoControlType.msoControlButton, 0, "MYRIGHTCLICKMENU", Missing.Value, Missing.Value);
    if (button == null)
    {
        // add the button
        button = (CommandBarButton) cellbar.Controls.Add(MsoControlType.msoControlButton, Missing.Value, Missing.Value, cellbar.Controls.Count, true);
        button.Caption = "Refresh";
        button.BeginGroup = true;
        button.Tag = "MYRIGHTCLICKMENU";
        button.Click += new _CommandBarButtonEvents_ClickEventHandler(MyButton_Click);
    }
}

private void MyButton_Click(CommandBarButton cmdBarbutton, ref bool cancel)
{
    System.Windows.Forms.MessageBox.Show("MyButton was Clicked", "MyCOMAddin");
}

右键单击单元格时,我希望看到一个名为 Refresh 的菜单项。然而运行上述代码(在 Excel 2010 中)没有“刷新”菜单项。

我可能遗漏了什么,或者此功能从 2007 年到 2010 年是否发生了变化?

4

2 回答 2

3

检查是否存在这种类型的代码(在您自己的插件或您公司使用的任何其他插件中),以及它是否将其注释掉或将其移至插件的 _Shutdown 事件。

//reset commandbars
Application.CommandBars["Cell"].Reset();
于 2012-05-10T07:37:20.033 回答
0

这个问题为时已晚,但可能对其他人有所帮助......下面的代码对我来说很好。

private void OnSheetRightClick(object Sh, Excel.Range Target, ref bool Cancel)
{
    // code to create the menu item button
}


private void InternalStartup()
{
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    this.Application.SheetBeforeRightClick += OnSheetRightClick;
}
于 2021-01-31T13:36:37.960 回答