如何在 Outlook 2010“新项目”中添加条目丝带部分?

发布于 2024-10-31 17:03:34 字数 544 浏览 4 评论 0原文

我正在将 Outlook 2003 插件更新到 Outlook 2010,并从此开始处理功能区。

我已经知道如何通过ribbon.xml 文件在功能区中添加新组。

但我不知道如何自定义现有功能区,即在“新项目”下拉按钮中添加新条目。

我想只要知道正确的 idMso 就可以做到这一点。

就其价值而言,该项目是一个 .NET 4 VSTO 项目。

对此有什么想法吗?

像这样的东西是行不通的,毕竟 GroupMailNew 组可能是只读的:

      <tab idMso="TabMail">
        <group idMso="GroupMailNew">
          <menu idMso="MailNewItemMenu">
            <button id="fooID" label="Foobar"/>
          </menu>
        </group>
      </tab>

I'm updating an Outlook 2003 plugin to Outlook 2010, and am henceforth dealing with the ribbon.

I already know how to add a new group in the ribbon, via a ribbon.xml file.

But I don't know how to customize an existing ribbon, i.e. add a new entry in the 'New items' dropdown button.

I guess one can do it by knowing the right idMso's.

For what it's worth, the project is a .NET 4 VSTO one.

Any idea on this?

Something like this doesn't workn, the GroupMailNew group may be read only, after all:

      <tab idMso="TabMail">
        <group idMso="GroupMailNew">
          <menu idMso="MailNewItemMenu">
            <button id="fooID" label="Foobar"/>
          </menu>
        </group>
      </tab>

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

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

发布评论

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

评论(2

吖咩 2024-11-07 17:03:34

我相信您会在这里找到答案:

http://msdn.microsoft .com/en-us/library/ee692172.aspx#OfficeOLExtendingUI_NewItemsMenuforJournalModule

此特定示例演示如何向“新项目”下拉按钮添加命令。

I believe you'll find the answer here:

http://msdn.microsoft.com/en-us/library/ee692172.aspx#OfficeOLExtendingUI_NewItemsMenuforJournalModule

This specific example shows how to add a command to the New Items dropdown button.

空气里的味道 2024-11-07 17:03:34

以防万一链接页面损坏,代码如下:

<contextMenus>    
    <contextMenu idMso="MenuMailNewItem">
        <button id="MyMenuMailNewItem"
            label="MenuNewMailItem"
            onAction="OnMyButtonClick"/>
    </contextMenu>  
</contextMenus>

Just in case the linked page becomes broken, here's the code:

<contextMenus>    
    <contextMenu idMso="MenuMailNewItem">
        <button id="MyMenuMailNewItem"
            label="MenuNewMailItem"
            onAction="OnMyButtonClick"/>
    </contextMenu>  
</contextMenus>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文