UIElement.AccessKeyScopeOwner Property

Definition

Gets or sets a source element that provides the access key scope for this element, even if it's not in the visual tree of the source element.

public:
 property DependencyObject ^ AccessKeyScopeOwner { DependencyObject ^ get(); void set(DependencyObject ^ value); };
DependencyObject AccessKeyScopeOwner();

void AccessKeyScopeOwner(DependencyObject value);
public DependencyObject AccessKeyScopeOwner { get; set; }
var dependencyObject = uIElement.accessKeyScopeOwner;
uIElement.accessKeyScopeOwner = dependencyObject;
Public Property AccessKeyScopeOwner As DependencyObject

Property Value

The element that defines the access key scope.

Remarks

The source element must have it's IsAccessKeyScope property set to true.

Applies to

See also