解決方案發現是創建一個標準的VSTO插件,添加功能區(XML),然後使用命令節點禁用按鈕。對於的idMso的列表,請參閱本download.
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="Ribbon_Load">
<commands>
<command idMso="Bold" enabled="false"/>
<command idMso="Font" enabled="false"/>
<command idMso="FontSize" enabled="false"/>
<command idMso="Italic" enabled="false"/>
<command idMso="Underline" enabled="false"/>
<command idMso="Shadow" enabled="false"/>
<command idMso="Strikethrough" enabled="false"/>
<command idMso="ChangeCaseGallery" enabled="false"/>
<command idMso="CharacterSpacingGallery" enabled="false"/>
<command idMso="FontColorPicker" enabled="false"/>
<command idMso="FontColorMoreColorsDialogPowerPoint" enabled="false"/>
<command idMso="FontDialogPowerPoint" enabled="false"/>
<command idMso="GroupParagraph" enabled="false"/>
<command idMso="BulletsGallery" enabled="false"/>
</commands>
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabAddIns">
<group id="MyGroup"
label="My Group">
</group>
</tab>
</tabs>
</ribbon>
像往常一樣,當我張貼的問題,我開始取得進展。找到GPO /註冊表設置的這個列表:http://technet.microsoft.com/en-us/library/cc179081.aspx這不太適合。 – 2009-07-07 13:56:14