UIElement.KeyTipTarget
UIElement.KeyTipTarget
UIElement.KeyTipTarget
UIElement.KeyTipTarget
Property
Definition
Gets or sets a value that indicates the element targeted by the access key Key Tip.
public : DependencyObject KeyTipTarget { get; set; }
DependencyObject KeyTipTarget();
void KeyTipTarget(DependencyObject keytiptarget);
public DependencyObject KeyTipTarget { get; set; }
Public ReadWrite Property KeyTipTarget As DependencyObject
Property Value
The element targeted by the Key Tip.
Additional features and requirements
Device family |
Windows 10, version 1803 (introduced v10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced v6)
|
Examples
In this example, we specify the access key for a Grid element, but we target the text heading of the Grid.
<StackPanel>
<TextBlock x:Name="Heading1">Heading 1</TextBlock>
<Grid
AccessKey="1"
AccessKeyInvoked="Invoke1"
KeyTipTarget="{x:Bind Heading1}">
<!-- ... -->
</Grid>
<TextBlock x:Name="Heading2">Heading 2</TextBlock>
<Grid
AccessKey="2"
AccessKeyInvoked="Invoke2"
KeyTipTarget="{x:Bind Heading2}">
<!-- ... -->
</Grid>
</StackPanel>
Remarks
The KeyTipPlacementMode property is used to specify the location of the access key Key Tip relative to the boundary of the targeted element.
See also
Feedback
Loading feedback...