13 references to IsVisible
PresentationCore (12)
MS\Internal\UIElementHelper.cs (1)
41return ((UIElement3D)o).IsVisible;
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (3)
212bool isOffscreen = !_owner.IsVisible; 231return !_owner.IsVisible; 326return IncludeInvisibleElementsInControlView || _owner.IsVisible;
System\Windows\Input\ManipulationLogic.cs (1)
538!uie3D.IsVisible)
System\Windows\Input\MouseDevice.cs (2)
333if(e.IsVisible && e.IsEnabled) 773if (element.IsVisible == false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
680return element.IsEnabled && element.IsVisible && element.IsHitTestVisible;
System\Windows\Input\TouchDevice.cs (2)
341((uiElement3D != null) && uiElement3D.IsVisible && uiElement3D.IsEnabled))) 532killCapture = !uiElement3D.IsEnabled || !uiElement3D.IsVisible || !uiElement3D.IsHitTestVisible;
System\Windows\UIElement3D.cs (2)
1033return ((UIElement3D)d).IsVisible ? BooleanBoxes.TrueBox : BooleanBoxes.FalseBox; 1101if (isVisible != IsVisible)
PresentationFramework (1)
System\Windows\Input\KeyboardNavigation.cs (1)
1439if (uiElement3D != null && uiElement3D.IsVisible)