13 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)
1441
cp.Style |= (int)WINDOW_STYLE.
WS_VISIBLE
;
11093
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
;
System.Windows.Forms.Primitives.Tests (5)
System\Windows\Forms\Automation\UiaTextProviderTests.cs (5)
19
| WINDOW_STYLE.
WS_VISIBLE
33
| WINDOW_STYLE.
WS_VISIBLE
46
| WINDOW_STYLE.
WS_VISIBLE
51
Assert.True(actual.HasFlag(WINDOW_STYLE.
WS_VISIBLE
));
58
style: WINDOW_STYLE.WS_OVERLAPPED | WINDOW_STYLE.
WS_VISIBLE
);
System.Windows.Forms.Tests (2)
System\Windows\Forms\DomainUpDownTests.cs (1)
167
| WINDOW_STYLE.
WS_VISIBLE
| WINDOW_STYLE.WS_CHILD);
System\Windows\Forms\UpDownBaseTests.cs (1)
150
WINDOW_STYLE.
WS_VISIBLE
| WINDOW_STYLE.WS_CHILD, (WINDOW_STYLE)createParams.Style);