Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ElementDescriptionVersion IntroducedPro Version Introduced
<Control>The root element for the SRP Ribbon Control.1.03.2

Child Elements

The following elements can be children of this one.

ElementDescriptionAppearsVersion IntroducedPro Version Introduced
<Button>A button control associated with a command.Zero or more1.03.2
<Page>A page in the Backstage.One or more1.03.2

Attributes

No attributes.

Remarks

...

Note: You have to have at least one page so that the right portion of the backstage is filled in.

Example

 

Code Block
<Backstage>
  <Button Command="SAVE" />
  <Button>
    <Command Key="SAVE_AS" Caption="Save As" KeyboardTip="A" SmallIcon="Images\16x16\save.png" Tooltip="Saves the document to the selected file." />
  </Button>
  <Button>
    <Command Key="OPEN" Caption="Open" KeyboardTip="O" SmallIcon="Images\16x16\folder_open.png" Tooltip="Opens a new document." />
  </Button>
  <Page Key="INFO">
    <Command Key="INFO" Caption="Info" KeyboardTip="I" SmallIcon="Images\16x16\info.png" Tooltip="The document's metadata." />
  </Page>
  <Button>
    <Command Key="PRINT" Caption="Print" KeyboardTip="P" SmallIcon="Images\16x16\print.png" Tooltip="Prints the document." />
  </Button>
  <Button>
    <Command Key="SHARE" Caption="Share" Tooltip="Shares the document with other users." />
  </Button>
  <Button>
    <Command Key="EXPORT" Caption="Export" Tooltip="Exports the document to other formats." />
  </Button>
  <Button>
    <Command Key="CLOSE" Caption="Close" KeyboardTip="X" Tooltip="Closes the application." />
  </Button>
</Backstage>

...