13 references to IsVisible
PresentationCore (12)
MS\Internal\UIElementHelper.cs (1)
43
return ((UIElement3D)o).
IsVisible
;
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (3)
220
bool isOffscreen = !_owner.
IsVisible
;
239
return !_owner.
IsVisible
;
334
return IncludeInvisibleElementsInControlView || _owner.
IsVisible
;
System\Windows\Input\ManipulationLogic.cs (1)
545
!uie3D.
IsVisible
)
System\Windows\Input\MouseDevice.cs (2)
342
if(e.
IsVisible
&& e.IsEnabled)
782
if (element.
IsVisible
== 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\UIElement3D.cs (2)
1048
return ((UIElement3D)d).
IsVisible
? BooleanBoxes.TrueBox : BooleanBoxes.FalseBox;
1116
if (isVisible !=
IsVisible
)
PresentationFramework (1)
System\Windows\Input\KeyboardNavigation.cs (1)
1449
if (uiElement3D != null && uiElement3D.
IsVisible
)