Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
9 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (1)
299
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
333
if(e.IsVisible && e.
IsEnabled
)
770
if (element.
IsEnabled
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
680
return element.
IsEnabled
&& element.IsVisible && element.IsHitTestVisible;
System\Windows\Input\TouchDevice.cs (2)
341
((uiElement3D != null) && uiElement3D.IsVisible && uiElement3D.
IsEnabled
)))
532
killCapture = !uiElement3D.
IsEnabled
|| !uiElement3D.IsVisible || !uiElement3D.IsHitTestVisible;
System\Windows\UIElement.cs (1)
2098
if (element3D.
IsEnabled
)
System\Windows\UIElement3D.cs (1)
579
if (Focusable &&
IsEnabled
)
PresentationFramework (1)
System\Windows\Controls\PopupControlService.cs (1)
1161
enabled = uie3D.
IsEnabled
;