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)
1613
cp.Style |= (int)WINDOW_STYLE.
WS_VISIBLE
;
11819
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)
829
if ((cp.Style & (int)WINDOW_STYLE.
WS_VISIBLE
) != 0)
832
cp.Style &= ~(int)WINDOW_STYLE.
WS_VISIBLE
;