Office 2010添加自定义选项卡/组包含不需要的命令

我已经inheritance了一个Excel 2010 VSTO,它有一个自己的选项卡下的button来启动一些代码(我也是VS和C#的新手)。

我的问题是当我部署它我得到额外的命令出现在“菜单命令”和“工具栏命令”组; 这些属于其他应用程序有Excel集成,但没有自己的选项卡/组。

我已经在解决scheme中search了对菜单和工具栏的引用,但无法在任何地方看到它们。

我的标签横跨function区是;

文件| 首页| 插入| 页面布局| 公式| 数据| 回顾| 查看| 开发人员| 博伊西工具2(我的插件)| 其他添加1 | 其他添加2 | 其他添加3 | 其他添加4 |

我已经为选项卡和组“Boyce工具2”指定了名称,所以不知道这些其他命令如何到达那里? 是否有可能其他插件只是默认第一个标签不是办公室的MS?

Ribbon.Designer.cs

namespace ReportFramework { partial class Ribbon : Microsoft.Office.Tools.Ribbon.RibbonBase { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; public Ribbon() : base(Globals.Factory.GetRibbonFactory()) { InitializeComponent(); } /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.tabBoyceTools = this.Factory.CreateRibbonTab(); this.grpBoyceCAL = this.Factory.CreateRibbonGroup(); this.btnGenerateCAL = this.Factory.CreateRibbonButton(); this.tabBoyceTools.SuspendLayout(); this.grpBoyceCAL.SuspendLayout(); // // tabBoyceTools // this.tabBoyceTools.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office; this.tabBoyceTools.Groups.Add(this.grpBoyceCAL); this.tabBoyceTools.Label = "Boyce Tools 2"; this.tabBoyceTools.Name = "tabBoyceTools"; // // grpBoyceCAL // this.grpBoyceCAL.Items.Add(this.btnGenerateCAL); this.grpBoyceCAL.Label = "CAL"; this.grpBoyceCAL.Name = "grpBoyceCAL"; // // btnGenerateCAL // this.btnGenerateCAL.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge; this.btnGenerateCAL.Label = "Format CAL"; this.btnGenerateCAL.Name = "btnGenerateCAL"; this.btnGenerateCAL.OfficeImageId = "MacroPlay"; this.btnGenerateCAL.ShowImage = true; this.btnGenerateCAL.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnGenerateCAL_Click); // // Ribbon // this.Name = "Ribbon"; this.RibbonType = "Microsoft.Excel.Workbook"; this.Tabs.Add(this.tabBoyceTools); this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Load); this.tabBoyceTools.ResumeLayout(false); this.tabBoyceTools.PerformLayout(); this.grpBoyceCAL.ResumeLayout(false); this.grpBoyceCAL.PerformLayout(); } #endregion internal Microsoft.Office.Tools.Ribbon.RibbonTab tabBoyceTools; internal Microsoft.Office.Tools.Ribbon.RibbonGroup grpBoyceCAL; internal Microsoft.Office.Tools.Ribbon.RibbonButton btnGenerateCAL; } partial class ThisRibbonCollection { internal Ribbon Ribbon { get { return this.GetRibbon<Ribbon>(); } } } 

}'

在debugging模式下运行时,开发机器上只有一个问题。

在发行模式或VSTO的实际安装版本中,这不是问题