Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
13 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
204return _owner.IsEnabled;
System\Windows\Input\MouseDevice.cs (2)
355if(ce.IsEnabled) // There is no IsVisible property for ContentElement 817if (element.IsEnabled == false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
692return element.IsEnabled;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
595if (ce?.IsEnabled ?? false)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
304if (ce.IsEnabled) // There is no IsVisible property for ContentElement
System\Windows\Input\TouchDevice.cs (2)
352((contentElement != null) && contentElement.IsEnabled) || 540killCapture = !contentElement.IsEnabled;
PresentationFramework (5)
System\Windows\Controls\PopupControlService.cs (1)
1167enabled = ce.IsEnabled;
System\Windows\Documents\Hyperlink.cs (2)
499if (IsEnabled && (!IsEditable || ((Keyboard.Modifiers & ModifierKeys.Control) != 0))) 811if (link.IsEnabled && link.IsEditable)
System\Windows\Input\KeyboardNavigation.cs (2)
1923return fce != null && fce.Focusable && (bool)fce.GetValue(IsTabStopProperty) && fce.IsEnabled; 1942return (ce != null && ce.Focusable && ce.IsEnabled);