在办公室项目中添加以下功能区xml中的代码
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2010/07/customui" onLoad="Ribbon_Load">
<commands>
<command idMso="FileSaveAs" enabled="false" />
<command idMso="FileSave" enabled="false" />
</commands>
</customUI>
并在ThisAddIn.cs
中添加了以下代码行protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
{
return new Ribbon1();
}
你能告诉我当我用asp.net打开Word文档时它是如何被调用的。目前禁用请求的按钮无效。