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