RibbonButton.Label Property

Definition

Gets or sets the text that is displayed next to or below the control.

public:
 property System::String ^ Label { System::String ^ get(); void set(System::String ^ value); };
public string Label { get; set; }
member this.Label : string with get, set
Public Property Label As String

Property Value

The text that is displayed next to or below the control. The registered default is null. For more information about what can influence the value, see Dependency Property Value Precedence.

Examples

The following example shows the markup used to create the first button. The Label property is set to "Paste".

Ribbon button controls
Ribbon button controls

<ribbon:RibbonButton Label="Paste"
                Command="Paste"
                SmallImageSource="Images/Paste16.png" 
                LargeImageSource="Images/Paste32.png"
                KeyTip="V"
                ToolTip="Paste (Ctrl+V)"
                ToolTipDescription="Paste the contents of the Clipboard into the document." />

Remarks

Set the IsLabelVisible property on the ControlSizeDefinition to control the visibility of the label.

Dependency Property Information

Identifier field LabelProperty
Metadata properties set to true None

Applies to