11 references to WS_CHILD
System.Windows.Forms (9)
System\Windows\Forms\Application.cs (1)
1234((WINDOW_STYLE)PInvokeCore.GetWindowLong(handle.Handle, WINDOW_LONG_PTR_INDEX.GWL_STYLE)).HasFlag(WINDOW_STYLE.WS_CHILD),
System\Windows\Forms\Control.cs (3)
1427cp.Style |= (int)(WINDOW_STYLE.WS_CHILD | WINDOW_STYLE.WS_CLIPSIBLINGS); 4605if (cp.Parent == IntPtr.Zero && (cp.Style & (int)WINDOW_STYLE.WS_CHILD) != 0) 11151.HasFlag(WINDOW_STYLE.WS_CHILD))
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (3)
223cp.Style |= TopLevel ? unchecked((int)WINDOW_STYLE.WS_POPUP) : (int)WINDOW_STYLE.WS_CHILD; 1542styleFlags &= ~WINDOW_STYLE.WS_CHILD; 1549styleFlags |= WINDOW_STYLE.WS_CHILD;
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
94Style = (int)(WINDOW_STYLE.WS_VISIBLE | WINDOW_STYLE.WS_CHILD),
System\Windows\Forms\NativeWindow.cs (1)
318&& ((WINDOW_STYLE)(uint)PInvokeCore.GetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_STYLE)).HasFlag(WINDOW_STYLE.WS_CHILD)
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);