Outlook add-in ribbon tooltip

I created an Outlook add-in using VSTO 2008. I did not create a separate feed / group for this add-in. Instead, VSTO automatically creates an add-in button in the embedded ribbon when Outlook starts. Now how to set up a tooltip on this add-in?

Here is a snippet to add a label and icon for my add-in

[Microsoft.Office.Tools.Outlook.FormRegionMessageClass("IPM.Note.DougForm")]
    [Microsoft.Office.Tools.Outlook.FormRegionName("Doug.Note.FormTest")]
    public class QMemoRegionFactory : QRegionFactory, Microsoft.Office.Tools.Outlook.IFormRegionFactory
    {
        public DougFormTest()
        {
            this._Manifest.FormRegionName = "DougForm";
            this._Manifest.Icons.Page = global::DougForm.OutlookAddin.Properties.Resources.DougIcon_big;
        }
...

thanks

+3
source share
1 answer

Does the application create an application of any XML feed that you know about? The names of the properties that can set the tooltip text for buttons on the ribbon are ScreenTip and SuperTip.

XML- , screentip, , .

http://msdn.microsoft.com/en-us/library/aa942866(VS.80).aspx

+4

Source: https://habr.com/ru/post/1703184/


All Articles