在“新邮件窗口”和“收件箱”窗口中创建“添加”按钮

时间:2011-06-26 14:38:00

标签: c# outlook vsto outlook-2007

如何使用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

1 个答案:

答案 0 :(得分:3)

我找到了我需要做的事情。我正准备在Compose Window和Read message window工具栏中添加功能区按钮。请看这个链接。这对我很有帮助。

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

由于