Add standard command button “New Slide” to custom

2020-05-07 12:43发布

I have created my customized ribbon in an addIn. Now I would like to add the New Slide command that exist in home screen (see screenshot below).

Original Powerpoint ribbon

4条回答
太酷不给撩
2楼-- · 2020-05-07 13:17

I created a new ribbon based on xml Template in VS. Afterwards I added a group and a control based on an idMso-Value. When using this xml file

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <ribbon>
    <tabs>
      <tab id="tab0" label="AddIn">
        <group id="grpCustom">
          <button idMso="SlideNew" size="large" label="YOUR CUSTOM TEXT"></button>
        </group>
        <group idMso="GroupSlides"></group>
      </tab>
    </tabs>
  </ribbon>
</customUI>

This results in that custom ribbon. Eugene Astafiev pointed it out, you can find idMso-Values in MSDN.

customized ribbon controls

查看更多
ゆ 、 Hurt°
4楼-- · 2020-05-07 13:24

As explained by Franz the solution is to use the idMso. For the New Slide command you are looking for, if you look at MSN in the idMso Table for "New Slide" you will find two entries. The one you are looking for is a Gallery with idMso=SlideNewGallery. (not a button). You can add it in the XML. I like to use the Ribbon Editor. With the Ribbon Editor it looks like this: Ribbon Editor: Add idMso command

And in the Add-In it looks then like this: AddIn Ribbon with standard command

The CustomUI XML relevant part looks like this

<group id="TD_GrpMisc" label="Misc">            
        <gallery 
            idMso="SlideNewGallery"
            size="large"/>
        <button 
            idMso="SlideNew"
            size="large"/>
</group >
查看更多
干净又极端
5楼-- · 2020-05-07 13:42

i currently have new slide button in my addin like the image below which gives me a new slideenter image description here

however I want the option like the already existing new slide in home ribbon where I can choose templates.Is there any way to invoke this button in my customized ribbon so below is my newslide that is what i want to get in my addin

enter image description here

  private void New_slide_Click(object sender, RibbonControlEventArgs e)
    {

        PowerPoint.Application ppApp = Globals.ThisAddIn.Application;
        ppApp.CommandBars.ExecuteMso("SlideNewGallery");
    }
查看更多
登录 后发表回答