在新消息窗口和收件箱窗口中创建插件按钮

发布于 2024-11-17 08:53:59 字数 541 浏览 1 评论 0原文

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

我正在使用 Visual Studio 2005,并为 Office 2007 安装了 VSTO

How to create Addin button in New Message Window and Inbox Window of Outlook 2007 using VSTO.

This code adds button to the main window of 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);

I am using Visual Studio 2005 with VSTO installed for Office 2007

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疧_╮線 2024-11-24 08:53:59

我确切地找到了我需要做的事情......我打算在撰写窗口和阅读消息窗口工具栏中添加功能区按钮。请参阅此链接。这对我很有帮助。

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

谢谢

I found exactly what I need to do..I was about to add ribbon button in both Compose Window and Read message window toolbar. Please see this link. It was very helpful for me.

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

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文