如何在 Outlook 2010“新项目”中添加条目丝带部分?
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您会在这里找到答案:
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.
以防万一链接页面损坏,代码如下:
Just in case the linked page becomes broken, here's the code: