6 references to WS_VISIBLE
System.Windows.Forms (6)
System\Windows\Forms\ActiveX\AxHost.cs (1)
212
cp.Style &= ~(int)WINDOW_STYLE.
WS_VISIBLE
;
System\Windows\Forms\Control.cs (2)
1434
cp.Style |= (int)WINDOW_STYLE.
WS_VISIBLE
;
11090
cp.Style |= (int)WINDOW_STYLE.
WS_VISIBLE
;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
94
Style = (int)(WINDOW_STYLE.
WS_VISIBLE
| WINDOW_STYLE.WS_CHILD),
System\Windows\Forms\Form.cs (2)
826
if ((cp.Style & (int)WINDOW_STYLE.
WS_VISIBLE
) != 0)
829
cp.Style &= ~(int)WINDOW_STYLE.
WS_VISIBLE
;