6 references to WS_VISIBLE
System.Windows.Forms (6)
winforms\Managed\System\WinForms\AxHost.cs (1)
316cp.Style = cp.Style & (~NativeMethods.WS_VISIBLE);
winforms\Managed\System\WinForms\Control.cs (2)
1890if ((state & STATE_VISIBLE) != 0) cp.Style |= NativeMethods.WS_VISIBLE; 12745cp.Style |= NativeMethods.WS_VISIBLE;
winforms\Managed\System\WinForms\ErrorProvider.cs (1)
948cparams.Style = NativeMethods.WS_VISIBLE | NativeMethods.WS_CHILD;
winforms\Managed\System\WinForms\Form.cs (2)
1061if ((cp.Style & NativeMethods.WS_VISIBLE) != 0) { 1063cp.Style &= (~NativeMethods.WS_VISIBLE);