5 references to WS_DISABLED
System.Windows.Forms (5)
winforms\Managed\System\WinForms\Control.cs (1)
1894
if (!Enabled) cp.Style |= NativeMethods.
WS_DISABLED
;
winforms\Managed\System\WinForms\Form.cs (3)
996
if (this.IsHandleCreated && (this.WindowStyle & NativeMethods.
WS_DISABLED
) != 0)
999
cp.Style |= NativeMethods.
WS_DISABLED
;
1005
cp.Style &= (~NativeMethods.
WS_DISABLED
);
winforms\Managed\System\WinForms\MDIClient.cs (1)
123
cp.Style |= NativeMethods.
WS_DISABLED
;