- Microsoft Word Customize Ribbon
- Ms Word Change Ribbon Size
- Microsoft Word Create Ribbon
- Ms Word 2016 Customize Ribbon
- Customize Ribbon In Microsoft Word
The Quick Access Toolbar (QAT) in Microsoft Office is a handy place to store your favorite commands and features. Unlike the Ribbon, the QAT stays the same no matter where you are or what you're. HOW TO CREATE TABS AND CUSTOMIZE RIBBON IN MICROSOFT WORDThis Microsoft Word 2016 tutorial shows you how to use the MS Word Options dialog box to customize y.
-->Controls hosted in the ribbon Command bar are subject to layout rules that are enforced by the Windows Ribbon framework and based on a combination of default behaviors and layout templates (both framework-defined and custom) as declared in the Ribbon markup. These rules define the adaptive layout behaviors of the Ribbon framework that influence how controls in the Command bar adapt to various ribbon sizes at run time.
- Introduction
Introduction
Adaptive layout, as defined by the Ribbon framework, is the ability of all controls within the ribbon UI to dynamically adjust their organization, size, format, and relative scale based on changes to the size of the ribbon at run time.
The framework exposes adaptive layout functionality through a set of markup elements that are dedicated to specifying and customizing various layout behaviors. A collection of templates, called SizeDefinitions, is defined by the framework, each of which support various control and layout scenarios. However, the framework also supports custom templates should the predefined templates not provide the UI experience or layouts required by an application.
To display controls in a preferred layout at a particular ribbon size, both predefined templates and custom templates work in conjunction with the ScalingPolicy element. This element contains a manifest of size preferences that the framework uses as a guide when rendering the ribbon.
Note
The Ribbon framework provides default layout behaviors based on a set of built-in heuristics for the organization and presentation of controls at run time without the need for the predefined SizeDefinition templates. However, this capability is intended for prototyping purposes only.
Ribbon SizeDefinition Templates
The Ribbon framework provides a comprehensive set of SizeDefinition templates that specify size and layout behavior for a Group of Ribbon controls. These templates cover most common scenarios for organizing controls in a Ribbon application.
To enforce a consistent user experience across Ribbon applications, each SizeDefinition template imposes restrictions on the controls or the family of controls it supports.
For example, the button family of controls includes:
While the input family of controls includes:
Check Box and In-Ribbon Gallery do not belong to either the button family or the input family. These two controls can be used only where explicitly indicated in a SizeDefinition template.
The following is a list of the SizeDefinition templates with a description of the layout and controls allowed by each template.
Important
If the controls declared in markup do not map exactly to control type, order, and quantity defined in the associated template, a validation error is logged by the markup compiler and compilation is terminated.
OneButton
One button-family control.
Only Large group size is supported.
TwoButtons
Two button-family controls.
Only Large and Medium group sizes are supported.
ThreeButtons
Three button-family controls.
Only Large and Medium group sizes are supported.
ThreeButtons-OneBigAndTwoSmall
Three button-family controls.
The first button is presented prominently in all three sizes.
ThreeButtonsAndOneCheckBox
Three button-family controls accompanied by a single CheckBox control.
Only Large and Medium group sizes are supported.
FourButtons
Four button-family controls.
FiveButtons
Five button-family controls.
FiveOrSixButtons
Five button-family controls and an optional sixth button.
SixButtons
Six button-family controls.
SixButtons-TwoColumns
Six button-family controls (alternate presentation).
SevenButtons
Seven button-family controls.
EightButtons
Eight button-family controls.
EightButtons-LastThreeSmall
Eight button-family controls (alternate presentation).
Note
All control elements declared with this template must be contained in two ControlGroup elements: one for the first five elements and one for the last three elements.
The following example demonstrates the markup required for this template.
NineButtons
Nine button-family controls.
TenButtons
Ten button-family controls.
ElevenButtons
Eleven button-family controls.
Microsoft Word Customize Ribbon
OneFontControl
One FontControl.
Only Large and Medium group sizes are supported.
Important
Including a FontControl within a custom template definition is not supported by the framework.
OneInRibbonGallery
One InRibbonGallery control.
Ms Word Change Ribbon Size
Only Large and Small group sizes are supported.
InRibbonGalleryAndBigButton
One InRibbonGallery control and a button-family control.
Only Large and Small group sizes are supported.
InRibbonGalleryAndButtons-GalleryScalesFirst
One In-Ribbon Gallery control and two or three button-family controls.
The gallery collapses to Popup representation in Medium and Small group sizes.
ButtonGroups
A complex arrangement of 32 button-family controls (most of which are optional).
Note
Aside from the optional full-sized button of the large ButtonGroups template, all control elements declared with this template must be contained in ControlGroup elements.
The following example demonstrates the markup required to display all 32 control elements (required and optional) with this template.
ButtonGroupsAndInputs
Two input-family controls (the second is optional) followed by a complex arrangement of 29 button-family controls (most of which are optional).
Only Large and Medium group sizes are supported.
Note
All control elements declared with this template must be contained in ControlGroup elements.
The following example demonstrates the markup required to display all control elements (required and optional) with this template.
BigButtonsAndSmallButtonsOrInputs
Two button-family controls (both optional) followed by two or three button or input-family controls.
Only Large and Medium group sizes are supported.
Basic SizeDefinition Example
The following code example provides a basic demonstration of how to declare a SizeDefinition template in Ribbon markup.
The OneInRibbonGallerySizeDefinition is used for this particular example, but all framework templates are specified in a similar fashion.
Complex SizeDefinition Example with Scaling Policies
The collapsing behavior of SizeDefinition templates can be controlled through the use of scaling policies in the Ribbon markup.
The ScalingPolicy element contains a manifest of ScalingPolicy.IdealSizes and Scale declarations that specify adaptive layout preferences for one or more Group elements when the Ribbon is resized.
Note
It is highly recommended that adequate scaling policy detail be specified such that most, if not all, Group elements are associated with a Scale element where the Size attribute is equal to Popup
. Doing so allows the framework to render the ribbon at the smallest size possible, and support the broadest range of display devices, before automatically introducing a scrolling mechanism.
The following code example demonstrates a ScalingPolicy manifest that specifies a ScalingPolicy.IdealSizesSizeDefinition preference for each of four groups of controls on a Home tab. In addition, Scale elements are specified to influence the collapsing behavior, in descending size order, of each group.
Custom Templates
If the default layout behaviors and the predefined SizeDefinition templates do not offer the flexibility or support for a particular layout scenario, custom templates are supported by the Ribbon framework through the Ribbon.SizeDefinitions element.
Custom templates can be declared in two ways: a standalone method using the Ribbon.SizeDefinitions element for declaring reusable, named templates or an inline method that is Group-specific.
Standalone Template
The following code example illustrates a basic, reusable custom template.
Microsoft Word Create Ribbon
Inline Template
The following code examples illustrate a basic inline custom template for a group of four buttons.
Ms Word 2016 Customize Ribbon
This section of code shows the Command declarations for a group of buttons. Large and small image resources are also specified here.
This section of code demonstrates how to define large, medium, and small GroupSizeDefinition templates to display the four buttons at various sizes and layouts. The ScalingPolicy declaration for the tab defines which template is used for a group of controls based on the ribbon size and space required by the active tab.
Customize Ribbon In Microsoft Word
The following images show how the templates from the previous example are applied to the ribbon UI to accommodate a decrease in ribbon size.
Type | Image |
---|---|
Large | |
Medium | |
Small | |
Popup |