Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
9 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
298
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
327
if(e.IsVisible && e.
IsEnabled
)
764
if (element.
IsEnabled
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
673
return element.
IsEnabled
&& element.IsVisible && element.IsHitTestVisible;
System\Windows\Input\TouchDevice.cs (2)
340
((uiElement3D != null) && uiElement3D.IsVisible && uiElement3D.
IsEnabled
)))
531
killCapture = !uiElement3D.
IsEnabled
|| !uiElement3D.IsVisible || !uiElement3D.IsHitTestVisible;
System\Windows\UIElement.cs (1)
2089
if (element3D.
IsEnabled
)
System\Windows\UIElement3D.cs (1)
578
if (Focusable &&
IsEnabled
)
PresentationFramework (1)
System\Windows\Controls\PopupControlService.cs (1)
1167
enabled = uie3D.
IsEnabled
;