Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
10 references to IsEnabled
PresentationCore (5)
Core\CSharp\System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
212return _owner.IsEnabled;
Core\CSharp\System\Windows\Input\MouseDevice.cs (2)
387if(ce.IsEnabled) // There is no IsVisible property for ContentElement 868if (element.IsEnabled == false)
Core\CSharp\System\Windows\Input\TouchDevice.cs (2)
391((contentElement != null) && contentElement.IsEnabled) || 578killCapture = !contentElement.IsEnabled;
PresentationFramework (5)
src\Framework\System\Windows\Controls\PopupControlService.cs (1)
1047enabled = ce.IsEnabled;
src\Framework\System\Windows\Documents\Hyperlink.cs (2)
499if (IsEnabled && (!IsEditable || ((Keyboard.Modifiers & ModifierKeys.Control) != 0))) 850if (link.IsEnabled && link.IsEditable)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (2)
2009return fce != null && fce.Focusable && (bool)fce.GetValue(IsTabStopProperty) && fce.IsEnabled; 2028return (ce != null && ce.Focusable && ce.IsEnabled);