UIElement.KeyTipTarget Property

Definition

Gets or sets a value that indicates the element targeted by the access key Key Tip.

C#
public DependencyObject KeyTipTarget { get; set; }

Property Value

The element targeted by the Key Tip.

Examples

In this example, we specify the access key for a Grid element, but we target the text heading of the Grid.

XAML
<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.

Applies to

Produkt Verzie
Windows App SDK 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6

See also