编程语言
首页 > 编程语言> > c# – Outlook加载项和禁用/隐藏自定义菜单项

c# – Outlook加载项和禁用/隐藏自定义菜单项

作者:互联网

我已经创建了一个Outlook加载项,我正在使用XML功能区配置文件来指定一个新选项卡和按钮.该按钮加载到outlook中的新选项卡中.现在有时,基于用户我们希望能够隐藏或禁用这些按钮.通过Outlook Interop api禁用自定义选项卡上的菜单按钮的最简单方法是什么?

我的第一个猜测是,我需要在创建功能区后迭代一些命令栏集合,然后搜索我的菜单按钮,但我不确定这些集合在哪里.

protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
{
    this.ribbon = new MyRibbon();

    // loop through tabs and ribbon items, look for my custom control, and enabled/disable specific buttons.

    return this.ribbon;
}

解决方法:

很抱歉回答我自己的问题.终于想通了.在xml配置中,有一个按钮/组/选项卡的getVisible回调.

所以你需要做的就是在xml中添加回调,在我的例子中我是为一个组做的:

<ribbon>
    <tabs>
      <tab idQ="myNs:myTab" label="My Label" >
          <group id="settingsGroup" label="Settings" getVisible="Control_Visible" >
              <button id="preferences" label="Preferences" image="configuration.png"
      screentip="Preferences" size="large" onAction="Settings_Click" supertip="Preferences" />
          </group>
      </tab>
    </tabs>
</ribbon>

并创建一个回调方法

public bool Control_Visible(Office.IRibbonControl control)
{
    // In order to maintain a reference to the groups, I store the controls into a List<Office.IRibbonControl>.
    if(!this.groupControls.Contains(control))
    {
        this.groupControls.Add(control);
    }         

    // logic here to determine if it should return true or false to be visible...
    return true;
}

然后,如果在使用outlook期间更改按钮/选项卡/组的可见性设置,则需要在功能区上调用Invalidate()方法,以便重新绘制功能区. IE:

this.ribbon.Invalidate();

标签:c,outlook,office-interop,ribbon,outlook-addin
来源: https://codeday.me/bug/20190518/1127236.html