Outlook插件和禁用/隐藏自定义菜单项
本文关键字:隐藏 自定义 菜单项 插件 Outlook | 更新日期: 2023-09-27 18:08:44
我创建了一个Outlook插件,我使用XML ribbon配置文件来指定一个新的选项卡和按钮。该按钮将加载到outlook中的新选项卡中。有时候,基于用户我们希望能够隐藏或禁用这些按钮。通过Outlook Interop api禁用自定义选项卡上的菜单按钮的最简单方法是什么?
我的第一个猜测是,我需要迭代通过一些命令栏集合后,我的ribbon创建,然后搜索我的菜单按钮,但我不确定这些集合在哪里。
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()方法,以便功能区重新绘制。即:
this.ribbon.Invalidate();