VSTO Office 插件开发(1)

控制CustomTaskPane开关
在Ribbon上添加一个checkbox用来控制侧边栏的隐藏显示
public void OnCheckRightBar(Office.IRibbonControl control, bool press)
{
Microsoft.Office.Tools.CustomTaskPane rightBarPane = Globals.ThisAddIn.CustomTaskPanes.Single();

rightBarPane.Visible = press;
}

你可能感兴趣的:(VSTO Office 插件开发(1))