我创建了(通过RibbonDesigner)新的Outlook功能区,它出现在约会的窗口中。
带型: Microsoft.Outlook.Appointment,Microsoft.Outlook.MeetingRequest.Read
我想在日历视图中选择约会时,将此功能区添加到“约会”选项卡附近的CalendarItems
[Location where I want to put the ribbon] 1
我该怎么做?
答案 0 :(得分:0)
功能区设计器不提供Fluent UI的所有功能,在某些情况下,您需要使用功能区XML来使工作正常。请参阅Walkthrough: Creating a Custom Tab by Using Ribbon XML以快速入门。
您似乎需要在资源管理器窗口的日历工具中添加新的上下文选项卡。例如:
<contextualTabs>
<tabSet idMso="TabSetAppointment">
<tab id="YourTab">
...
</tab>
</tabSet>
</contextualTabs>
在类似的论坛帖子中了解更多相关内容 - How to get Calendar Tools Ribbon through VSTO Outlook Addin。
您可能还会发现Chapter 11: Creating Dynamic Ribbon Customizations (1 of 2)文章有用。