在“新建邮件”窗口和“收件箱”窗口中创建“加载项”按钮
本文关键字:加载项 收件箱 窗口 创建 按钮 新建 新建邮件 | 更新日期: 2023-09-27 18:00:37
如何使用VSTO在Outlook 2007的新邮件窗口和收件箱窗口中创建Addin按钮。
此代码将按钮添加到Outlook2007的主窗口中。
//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
我找到了我需要做的事情。我正要在撰写窗口和阅读消息窗口工具栏中添加功能区按钮。请查看此链接。这对我很有帮助。
http://blogs.msdn.com/b/vsto/archive/2009/12/15/making-a-custom-group-appear-in-the-message-tab-of-a-mail-item-norm-estabrook.aspx
感谢