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