获取Office 2010功能区的所有控件的ID,并与自定义加载项中的功能区快捷方式进行交互

时间:2012-09-28 11:41:57

标签: .net vsto powerpoint add-in ribbonx

我希望获得powerpoint 2010功能区中的所有控件列表,例如powerpoint选项中的控件列表 - >自定义功能区 - >所有命令。

此外,我想与自定义加载项

中的功能区快捷方式进行交互

1 个答案:

答案 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)