使用 c# 添加到 office 插件中的上下文菜单
Adding to the context menu in office plugin with c#
我正在为 Microsoft Outlook 创建一个 office 2016 插件,并希望通过在我右键单击日历事件时添加元素来自定义上下文菜单(右键单击菜单)。
之前ApplicationEvents_11_Event.ItemContextMenuDisplayevent
它的功能可以完成工作,但它似乎已被弃用并且不再受支持。如果我想使用 c# 编辑 Outlook 2016 中的上下文菜单,是否有新选项可供选择?我正在使用 visual studio 2015 社区和 Outlook 2013 和 2016 VSTO 加载项模板。
Fluent UI(又名 Ribbon UI)用于自定义 Outlook 2010 及更高版本中的上下文菜单。在文章中阅读有关上下文菜单的更多信息:
UI 将在以下系列文章中进行深入介绍:
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)
最后,如果是 VSTO 加载项,请查看 Walkthrough: Creating a Custom Tab by Using Ribbon XML 文章。
我正在为 Microsoft Outlook 创建一个 office 2016 插件,并希望通过在我右键单击日历事件时添加元素来自定义上下文菜单(右键单击菜单)。
之前ApplicationEvents_11_Event.ItemContextMenuDisplayevent
它的功能可以完成工作,但它似乎已被弃用并且不再受支持。如果我想使用 c# 编辑 Outlook 2016 中的上下文菜单,是否有新选项可供选择?我正在使用 visual studio 2015 社区和 Outlook 2013 和 2016 VSTO 加载项模板。
Fluent UI(又名 Ribbon UI)用于自定义 Outlook 2010 及更高版本中的上下文菜单。在文章中阅读有关上下文菜单的更多信息:
UI 将在以下系列文章中进行深入介绍:
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
- Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)
最后,如果是 VSTO 加载项,请查看 Walkthrough: Creating a Custom Tab by Using Ribbon XML 文章。