WS.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class WS
  5. {
  6. public const int WS_OVERLAPPED = 0;
  7. public const int WS_POPUP = -2147483648;
  8. public const int WS_CHILD = 1073741824;
  9. public const int WS_MINIMIZE = 536870912;
  10. public const int WS_VISIBLE = 268435456;
  11. public const int WS_DISABLED = 134217728;
  12. public const int WS_CLIPSIBLINGS = 67108864;
  13. public const int WS_CLIPCHILDREN = 33554432;
  14. public const int WS_MAXIMIZE = 16777216;
  15. public const int WS_CAPTION = 12582912;
  16. public const int WS_BORDER = 8388608;
  17. public const int WS_DLGFRAME = 4194304;
  18. public const int WS_VSCROLL = 2097152;
  19. public const int WS_HSCROLL = 1048576;
  20. public const int WS_SYSMENU = 524288;
  21. public const int WS_THICKFRAME = 262144;
  22. public const int WS_GROUP = 131072;
  23. public const int WS_TABSTOP = 65536;
  24. public const int WS_MINIMIZEBOX = 131072;
  25. public const int WS_MAXIMIZEBOX = 65536;
  26. public const int WS_TILED = 0;
  27. public const int WS_ICONIC = 536870912;
  28. public const int WS_SIZEBOX = 262144;
  29. public const int WS_TILEDWINDOW = 13565952;
  30. public const int WS_OVERLAPPEDWINDOW = 13565952;
  31. public const int WS_POPUPWINDOW = -2138570752;
  32. public const int WS_CHILDWINDOW = 1073741824;
  33. }
  34. }