RibbonRadioButton.Label Property
Gets or sets the text that is displayed next to or below the control.
Namespace: Microsoft.Windows.Controls.Ribbon
Assembly: RibbonControlsLibrary (in RibbonControlsLibrary.dll)
Syntax
'Declaration
Public Property Label As String
public string Label { get; set; }
public:
property String^ Label {
String^ get ();
void set (String^ value);
}
member Label : string with get, set
function get Label () : String
function set Label (value : String)
Property Value
Type: System.String
The text that is displayed next to or below the control. The registered default is nulla null reference (Nothing in Visual Basic). For more information about what can influence the value, see Dependency Property Value Precedence.
Dependency Property Information
Identifier field |
|
Metadata properties set to true |
None |
Remarks
Set the IsLabelVisible property on the ControlSizeDefinition to control the visibility of the label.
Examples
The following example shows how to set the Label property on a RibbonRadioButton.
<ribbon:RibbonRadioButton Label="Color 1"
SmallImageSource="Images/RightArrowShort_Green16.png"
LargeImageSource="Images/RightArrowShort_Green32.png"
KeyTip="C1" />
<ribbon:RibbonRadioButton Label="Color 2"
SmallImageSource="Images/RightArrowShort_Blue16.png"
LargeImageSource="Images/RightArrowShort_Blue32.png"
KeyTip="C2" />
<ribbon:RibbonRadioButton Label="Color 3"
SmallImageSource="Images/RightArrowShort_Orange16.png"
LargeImageSource="Images/RightArrowShort_Orange32.png"
KeyTip="C3" />
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.