6 references to IsWindowVisible
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (4)
1298public bool CanFocus => IsHandleCreated && PInvoke.IsWindowVisible(this) && PInvoke.IsWindowEnabled(this); 3006PInvoke.SetWindowRgn(this, default, PInvoke.IsWindowVisible(this)); 3014if (PInvoke.SetWindowRgn(this, regionHandle, PInvoke.IsWindowVisible(this)) != 0) 11228if (!PInvoke.IsWindowVisible(this))
System\Windows\Forms\Controls\ComboBox\ComboBox.ACNativeWindow.cs (1)
36internal bool Visible => PInvoke.IsWindowVisible(this);
System\Windows\Forms\Form.cs (1)
5804else if (PInvoke.IsWindow(ownerHwnd) && PInvoke.IsWindowVisible(ownerHwnd))