123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int WS_EX_DLGMODALFRAME = 0x00000001;
-
-
-
- public const int WS_EX_NOPARENTNOTIFY = 0x00000004;
-
-
-
- public const int WS_EX_TOPMOST = 0x00000008;
-
-
-
- public const int WS_EX_ACCEPTFILES = 0x00000010;
-
-
-
-
- public const int WS_EX_TRANSPARENT = 0x00000020;
-
-
-
- public const int WS_EX_MDICHILD = 0x00000040;
-
-
-
- public const int WS_EX_TOOLWINDOW = 0x00000080;
-
-
-
- public const int WS_EX_WINDOWEDGE = 0x00000100;
-
-
-
- public const int WS_EX_CLIENTEDGE = 0x00000200;
-
-
-
-
- public const int WS_EX_CONTEXTHELP = 0x00000400;
-
-
-
-
- public const int WS_EX_RIGHT = 0x00001000;
-
-
-
- public const int WS_EX_LEFT = 0x00000000;
-
-
-
- public const int WS_EX_RTLREADING = 0x00002000;
-
-
-
- public const int WS_EX_LTRREADING = 0x00000000;
-
-
-
- public const int WS_EX_LEFTSCROLLBAR = 0x00004000;
-
-
-
- public const int WS_EX_RIGHTSCROLLBAR = 0x00000000;
-
-
-
- public const int WS_EX_CONTROLPARENT = 0x00010000;
-
-
-
- public const int WS_EX_STATICEDGE = 0x00020000;
-
-
-
- public const int WS_EX_APPWINDOW = 0x00040000;
-
-
-
- public const int WS_EX_OVERLAPPEDWINDOW = WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE;
-
-
-
- public const int WS_EX_PALETTEWINDOW = WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST;
-
-
-
- public const int WS_EX_LAYERED = 0x00080000;
-
-
-
- public const int WS_EX_NOINHERITLAYOUT = 0x00100000;
-
-
-
- public const int WS_EX_LAYOUTRTL = 0x00400000;
-
-
-
- public const int WS_EX_COMPOSITED = 0x02000000;
-
-
-
-
-
- public const int WS_EX_NOACTIVATE = 0x08000000;
- }
- }
|