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