当使用c#打开单词时,如何禁用ms word 2010中的“另存为”和“保存”按钮。
答案 0 :(得分:2)
您需要将Ribbon XML item添加到项目中。
功能区是自定义Microsoft Office应用程序的用户界面(UI)的工具。
<?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="FileSave" enabled="false" />
</commands>
</customUI>