Microsoft Outlook加载项 [英] Microsoft Outlook Add-Ins

查看:74
本文介绍了Microsoft Outlook加载项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 

我需要在"创建新会议"页面中创建功能区/加载项。就像我去Outlook并单击添加会议时,我会打开一个弹出窗口输入所有会议详细信息。在里面,我需要在VSTO中创建一个新的加载项或功能区。我可以在New Email弹出窗口中创建
来创建。您能否帮助如何在会议弹出窗口内创建? 

I need to create a ribbon/Add-In inside Create New Meeting page . Its like when i go to outlook and click on Add meeting i get a pop-up open to enter all the Meeting details . Inside that i need to create a new Add-In or a Ribbon in VSTO . I am able to create to create inside New Email pop-up . Can you please help how to create inside Meeting Pop-up ? 

谢谢,

Soumya

SOumya

推荐答案

Hello Soumya,

Hello Soumya,

你需要选择合适的色带类型。目前尚不清楚如何在Outlook中自定义功能区。在Outlook中自定义Fluent UI有两种方法:

You need to choose an appropriate ribbon type. It is not clear how you customize the ribbon in Outlook. There are two ways for customizing the Fluent UI in Outlook:

1。功能区XML -
演练:创建自定义使用功能区XML标签
 。

1. Ribbon XML - Walkthrough: Creating a Custom Tab by Using Ribbon XML .

2。功能区设计器 -
演练:创建自定义使用功能区设计器选项卡

2. Ribbon Designer - Walkthrough: Creating a Custom Tab by Using the Ribbon Designer

如果您使用  Ribbon
(视觉设计师)
  item,点击  RibbonType   property
of  
属性   window,
然后从值列表中选择一个或多个功能区ID。
如果是功能区XML,则需要检查GetCustomUI方法:

If you are using the Ribbon (Visual Designer) item, click the RibbonType property of the ribbon in the Properties window, and then select one or more ribbon IDs from the list of values. In case of ribbon XML you need to check the GetCustomUI method:

        public string GetCustomUI(string ribbonID)
        {
            string ribbonXML = String.Empty;

            if (ribbonID == "Microsoft.Outlook.Mail.Compose")
            {
                ribbonXML = GetResourceText("Trin_RibbonOutlookBasic.Ribbon1.xml");
            }

            return ribbonXML;
        }

T 他的ribbonID参数决定了功能区类型。很可能你没有返回任何功能区XML用于会议项目。

The ribbonID parameter determines the ribbon type. Most probably you don't return any ribbon XML for meeting items.

您可以在MSDN的以下系列文章中阅读有关Fluent用户界面的更多信息:

You can read more about the Fluent UI in the following series of articles in MSDN:

为开发人员自定义2007 Office Fluent功能区(第1部分,共3部分) )

自定义
2007 Office Fluent功能区开发人员(第2部分,共3部分)

自定义
2007 Office Fluent开发人员的功能区(第3部分3)

 


这篇关于Microsoft Outlook加载项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆