12 references to IsVisible
PresentationCore (11)
Core\CSharp\MS\Internal\UIElementHelper.cs (1)
43
return ((UIElement3D)o).
IsVisible
;
Core\CSharp\System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (3)
232
bool isOffscreen = !_owner.
IsVisible
;
251
return !_owner.
IsVisible
;
340
return IncludeInvisibleElementsInControlView || _owner.
IsVisible
;
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (1)
589
!uie3D.
IsVisible
)
Core\CSharp\System\Windows\Input\MouseDevice.cs (2)
397
if(e.
IsVisible
&& e.IsEnabled)
856
if (element.
IsVisible
== false)
Core\CSharp\System\Windows\Input\TouchDevice.cs (2)
392
((uiElement3D != null) && uiElement3D.
IsVisible
&& uiElement3D.IsEnabled)))
582
killCapture = !uiElement3D.IsEnabled || !uiElement3D.
IsVisible
|| !uiElement3D.IsHitTestVisible;
Core\CSharp\System\Windows\UIElement3D.cs (2)
1056
return ((UIElement3D)d).
IsVisible
? BooleanBoxes.TrueBox : BooleanBoxes.FalseBox;
1130
if (isVisible !=
IsVisible
)
PresentationFramework (1)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (1)
1535
if (uiElement3D != null && uiElement3D.
IsVisible
)