12345678910111213141516171819202122232425262728293031323334 |
- using System;
- namespace LYFZ.OtherExpansion.Win32.Const
- {
- public static class WS
- {
- public const int WS_OVERLAPPED = 0;
- public const int WS_POPUP = -2147483648;
- public const int WS_CHILD = 1073741824;
- public const int WS_MINIMIZE = 536870912;
- public const int WS_VISIBLE = 268435456;
- public const int WS_DISABLED = 134217728;
- public const int WS_CLIPSIBLINGS = 67108864;
- public const int WS_CLIPCHILDREN = 33554432;
- public const int WS_MAXIMIZE = 16777216;
- public const int WS_CAPTION = 12582912;
- public const int WS_BORDER = 8388608;
- public const int WS_DLGFRAME = 4194304;
- public const int WS_VSCROLL = 2097152;
- public const int WS_HSCROLL = 1048576;
- public const int WS_SYSMENU = 524288;
- public const int WS_THICKFRAME = 262144;
- public const int WS_GROUP = 131072;
- public const int WS_TABSTOP = 65536;
- public const int WS_MINIMIZEBOX = 131072;
- public const int WS_MAXIMIZEBOX = 65536;
- public const int WS_TILED = 0;
- public const int WS_ICONIC = 536870912;
- public const int WS_SIZEBOX = 262144;
- public const int WS_TILEDWINDOW = 13565952;
- public const int WS_OVERLAPPEDWINDOW = 13565952;
- public const int WS_POPUPWINDOW = -2138570752;
- public const int WS_CHILDWINDOW = 1073741824;
- }
- }
|