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