13 references to IsVisible
PresentationCore (12)
MS\Internal\UIElementHelper.cs (1)
47return ((UIElement3D)o).IsVisible;
System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (3)
220bool isOffscreen = !_owner.IsVisible; 239return !_owner.IsVisible; 334return IncludeInvisibleElementsInControlView || _owner.IsVisible;
System\Windows\Input\ManipulationLogic.cs (1)
545!uie3D.IsVisible)
System\Windows\Input\MouseDevice.cs (2)
365if(e.IsVisible && e.IsEnabled) 805if (element.IsVisible == false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
697return element.IsEnabled && element.IsVisible && element.IsHitTestVisible;
System\Windows\Input\TouchDevice.cs (2)
353((uiElement3D != null) && uiElement3D.IsVisible && uiElement3D.IsEnabled))) 544killCapture = !uiElement3D.IsEnabled || !uiElement3D.IsVisible || !uiElement3D.IsHitTestVisible;
System\Windows\UIElement3D.cs (2)
1049return ((UIElement3D)d).IsVisible ? BooleanBoxes.TrueBox : BooleanBoxes.FalseBox; 1117if (isVisible != IsVisible)
PresentationFramework (1)
System\Windows\Input\KeyboardNavigation.cs (1)
1449if (uiElement3D != null && uiElement3D.IsVisible)