The list of controls that appear on the right end of the tab bar area.

Parent Elements

This element can appear as a child of the following elements.

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 once1.03.2
<CheckBox>A check box control.Zero or once1.03.2
<ComboBox>A combo box control.Zero or once1.03.2
<DateField>A date field control with a calendar drop down.Zero or once1.03.2
<EditField>An edit field control. 1.03.2
<Label>A label control that only display some text. 1.03.2
<SplitButton>A button control with a drop down that can contain other controls.Zero or once1.03.2

Attributes

No attributes.

Remarks

The TabBarControls element defines the controls that appear in the space to the right of the tabs. This is meant for a select few controls, typically plain buttons, that provide additional functionality in a convenient location. A help button is a good example, but you can place any control you want onto it.

Example

<TabBarControls>
  <Button Key="BTN_MINIMIZE">
    <Command Key="MINIMIZE" Caption="Minimize" Tooltip="Toggles the Ribbon." />
  </Button>
</TabBarControls>
  • No labels