13 references to WS_VISIBLE
System.Windows.Forms (6)
System\Windows\Forms\ActiveX\AxHost.cs (1)
212cp.Style &= ~(int)WINDOW_STYLE.WS_VISIBLE;
System\Windows\Forms\Control.cs (2)
1441cp.Style |= (int)WINDOW_STYLE.WS_VISIBLE; 11093cp.Style |= (int)WINDOW_STYLE.WS_VISIBLE;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
94Style = (int)(WINDOW_STYLE.WS_VISIBLE | WINDOW_STYLE.WS_CHILD),
System\Windows\Forms\Form.cs (2)
826if ((cp.Style & (int)WINDOW_STYLE.WS_VISIBLE) != 0) 829cp.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 51Assert.True(actual.HasFlag(WINDOW_STYLE.WS_VISIBLE)); 58style: 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)
150WINDOW_STYLE.WS_VISIBLE | WINDOW_STYLE.WS_CHILD, (WINDOW_STYLE)createParams.Style);