Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
9 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
307
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
342
if(e.IsVisible && e.
IsEnabled
)
779
if (element.
IsEnabled
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
690
return element.
IsEnabled
&& element.IsVisible && element.IsHitTestVisible;
System\Windows\Input\TouchDevice.cs (2)
353
((uiElement3D != null) && uiElement3D.IsVisible && uiElement3D.
IsEnabled
)))
544
killCapture = !uiElement3D.
IsEnabled
|| !uiElement3D.IsVisible || !uiElement3D.IsHitTestVisible;
System\Windows\UIElement.cs (1)
2103
if (element3D.
IsEnabled
)
System\Windows\UIElement3D.cs (1)
594
if (Focusable &&
IsEnabled
)
PresentationFramework (1)
System\Windows\Controls\PopupControlService.cs (1)
1171
enabled = uie3D.
IsEnabled
;