我希望获得powerpoint 2010功能区中的所有控件列表,例如powerpoint选项中的控件列表 - >自定义功能区 - >所有命令。
此外,我想与自定义加载项
中的功能区快捷方式进行交互答案 0 :(得分:6)
您将在微软网站http://www.microsoft.com/en-us/download/details.aspx?id=6627上找到您想要的所有办公室ID。
您将在PowerPointControls.xlsx
文件中找到您的ID。
创建自己的菜单:
打开Ribbon.xml
在<ribbon>
<tabs>
<tab idMso="TabAddIns">
<group id="ContentGroup" label="Content">
<button id="textButton" label="Insert Text"
screentip="Text" onAction="OnTextButton"
supertip="Inserts text at the cursor location."/>
<button id="tableButton" label="Insert Table"
screentip="Table" onAction="OnTableButton"
supertip="Inserts a table at the cursor location."/>
</group>
</tab>
</tabs>
对于自定义插件快捷方式,我认为您必须添加一个新标签:
<tab id="YourTab" visible="true" label="Name">
<group id="YourGroup" label="name">
<button onAction="CallAddinsHere();" label="Call add-ins"/>
</group>
</tab>
如果您想与自定义插件快捷方式进行互动,请查看:
Automate Office Ribbon through MSAA (CSOfficeRibbonAccessibility)