Specifies with an underscore the character that is used as the access key.
Namespace:
System.Windows.Controls
Assembly:
PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Visual Basic (Declaration)
<ContentPropertyAttribute("Text")> _
Public Class AccessText _
Inherits FrameworkElement _
Implements IAddChild
Dim instance As AccessText
[ContentPropertyAttribute("Text")]
public class AccessText : FrameworkElement, IAddChild
[ContentPropertyAttribute(L"Text")]
public ref class AccessText : public FrameworkElement,
IAddChild
public class AccessText extends FrameworkElement implements IAddChild
XAML Object Element Usage
<AccessText>
Text
</AccessText>
If your content has multiple underscore characters, only the first one is converted into an AccessKey; the other underscores appear as normal text. If the underscore that you want converted to the access key is not the first underscore, use two consecutive underscores for any underscores that precede the one that you want to convert. For example, the following code contains an access key and displays as _HelloWorld:
<AccessText>__Hello_World</AccessText>
Because the underscore that precedes H is a double, the W key registers as the access key.
To use AccessText as a content host in a control style, set RecognizesAccessKey in the ContentPresenter, as this example shows:
<ContentPresenter RecognizesAccessKey="True"/>
You can use the AccessText tag to create an AccessKey; however, a tag is not necessary. The following example shows how to create an access key with and without the AccessText tag.
<Button Click="edit_Click">
<AccessText>_Edit</AccessText>
</Button>
<Button Click="cut_Click">_Cut</Button>
System..::.Object
System.Windows.Threading..::.DispatcherObject
System.Windows..::.DependencyObject
System.Windows.Media..::.Visual
System.Windows..::.UIElement
System.Windows..::.FrameworkElement
System.Windows.Controls..::.AccessText
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources