Ribbon.Tabs property
Represents a container for all core tabs in a Ribbon.
Usage
<Ribbon.Tabs>
child elements
</Ribbon.Tabs>
Attributes
There are no attributes.
Child elements
Element | Description |
---|---|
Tab |
Must occur at least once |
Parent elements
Element |
---|
Ribbon |
Remarks
Required.
May occur one or more times for each Ribbon.
Examples
The following example demonstrates the basic markup for a Ribbon.Tabs element with a Home Tab declaration.
<Ribbon Name="ScenicRibbonSampleApp">
<Ribbon.QuickAccessToolbar>
...
</Ribbon.QuickAccessToolbar>
<Ribbon.ApplicationMenu>
...
</Ribbon.ApplicationMenu>
<Ribbon.SizeDefinitions>
...
</Ribbon.SizeDefinitions>
<Ribbon.Tabs>
...
<Tab CommandName="cmdHomeTab">
<Group CommandName="cmdClipboardGroup"
SizeDefinition="ThreeButtons">
<Button CommandName="cmdCopy"/>
<Button CommandName="cmdPaste"/>
<ToggleButton CommandName="cmdMinimize"/>
</Group>
</Tab>
...
</Ribbon.Tabs>
<Ribbon.ContextualTabs>
...
</Ribbon.ContextualTabs>
<Ribbon.HelpButton>
...
</Ribbon.HelpButton>
</Ribbon>
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |