AccessText::Text Property
Gets or sets the text that is displayed by the AccessText element.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::String^The text without the first underscore character. The default is an empty string.
An access key is not created if you use the Text property to supply text for an AccessText element. This property is used internally to determine the text that is displayed by the access key. You can use this property to set additional text that does not contain the mnemonic (underlined character) or to retrieve the access key text.
<object>_accessText</object> - or - <object><accessTextObject>_accessText</accessTextObject></object>
- _accessText
A string that contains the underscore character. This value becomes an AccessText that handles access keys for the object. The access key is the character that immediately follows the underscore.
- accessTextObject
The AccessText.
Identifier field | |
Metadata properties set to true |
The following example creates an access key that customizes the first letter of the access key, which contains the mnemonic, and then sets the rest of the text by using the Text property.
<DockPanel> <AccessText Background="Red" Foreground="LightBlue" FontFamily="Arial Narrow" FontSize="16" FontStyle="Italic" FontWeight="Bold">_E</AccessText><AccessText Text="dit"/> </DockPanel>
Available since 3.0