如何使用VSTO在Outlook 2007的新邮件窗口和收件箱窗口中创建Addin按钮。
此代码将按钮添加到Outlook 2007的主窗口。
//Define the existent Menu Bar
menuBar = this.Application.ActiveExplorer().CommandBars.ActiveMenuBar;
//Define the new Menu Bar into the old menu bar
newMenuBar = (Office.CommandBarPopup)menuBar.Controls.Add(
Office.MsoControlType.msoControlPopup, missing,
missing, missing, false);
我正在使用安装了Office 2007的VSTO的Visual Studio 2005
答案 0 :(得分:3)
我找到了我需要做的事情。我正准备在Compose Window和Read message window工具栏中添加功能区按钮。请看这个链接。这对我很有帮助。
由于