4 references to IsHitTestVisible
PresentationCore (4)
MS\Internal\UIElementHelper.cs (1)
28
return ((UIElement3D)o).
IsHitTestVisible
;
System\Windows\Input\MouseDevice.cs (1)
785
if (element.
IsHitTestVisible
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
690
return element.IsEnabled && element.IsVisible && element.
IsHitTestVisible
;
System\Windows\Input\TouchDevice.cs (1)
544
killCapture = !uiElement3D.IsEnabled || !uiElement3D.IsVisible || !uiElement3D.
IsHitTestVisible
;