3

我有以下代码应该禁用 Word 2010 中的“另存为”按钮。在Document_Startup事件中调用以下方法:

private void DisableSaveAsButton()
{
    Object MenuBar = 40;
    Object FileMenu = 1;
    Object SaveAsButton = 5;
    var saveAsBtn = this.ThisApplication.CommandBars[MenuBar].Controls[FileMenu].accChild[SaveAsButton] as CommandBarButton;
    saveAsBtn.Enabled = false;
}

我希望“另存为”按钮变灰,但事实并非如此,它仍然有效。我究竟做错了什么?

4

1 回答 1

4

我想到了。我只需要将功能区 XML 项添加到项目中,并提供以下信息。我还需要禁用其他一些按钮:

     <?xml version="1.0" encoding="UTF-8"?>
     <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" 
        onLoad="OnLoad" > 
        <commands> 
          <command idMso="FileSaveAs" enabled="false" />
          <command idMso="FileNewDefault" enabled="false"/>
          <command idMso="FileOpen" enabled="false"/>
          <command idMso="FileOpenRecentFile" enabled="false"/>
        </commands> 
     </customUI>
于 2012-10-25T20:43:37.127 回答