WM.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class WM
  5. {
  6. public const int WM_NULL = 0;
  7. public const int WM_CREATE = 1;
  8. public const int WM_DESTROY = 2;
  9. public const int WM_MOVE = 3;
  10. public const int WM_SIZE = 5;
  11. public const int WM_ACTIVATE = 6;
  12. public const int WM_SETFOCUS = 7;
  13. public const int WM_KILLFOCUS = 8;
  14. public const int WM_ENABLE = 10;
  15. public const int WM_SETREDRAW = 11;
  16. public const int WM_SETTEXT = 12;
  17. public const int WM_GETTEXT = 13;
  18. public const int WM_GETTEXTLENGTH = 14;
  19. public const int WM_PAINT = 15;
  20. public const int WM_CLOSE = 16;
  21. public const int WM_QUIT = 18;
  22. public const int WM_ERASEBKGND = 20;
  23. public const int WM_SYSCOLORCHANGE = 21;
  24. public const int WM_SHOWWINDOW = 24;
  25. public const int WM_ACTIVATEAPP = 28;
  26. public const int WM_SETCURSOR = 32;
  27. public const int WM_MOUSEACTIVATE = 33;
  28. public const int WM_GETMINMAXINFO = 36;
  29. public const int WM_SETFONT = 48;
  30. public const int WM_WINDOWPOSCHANGING = 70;
  31. public const int WM_WINDOWPOSCHANGED = 71;
  32. public const int WM_NOTIFY = 78;
  33. public const int WM_CONTEXTMENU = 123;
  34. public const int WM_STYLECHANGING = 124;
  35. public const int WM_STYLECHANGED = 125;
  36. public const int WM_DISPLAYCHANGE = 126;
  37. public const int WM_GETICON = 127;
  38. public const int WM_SETICON = 128;
  39. public const int WM_NCCREATE = 129;
  40. public const int WM_NCDESTROY = 130;
  41. public const int WM_NCCALCSIZE = 131;
  42. public const int WM_NCHITTEST = 132;
  43. public const int WM_NCPAINT = 133;
  44. public const int WM_NCACTIVATE = 134;
  45. public const int WM_GETDLGCODE = 135;
  46. public const int WM_SYNCPAINT = 136;
  47. public const int WM_NCMOUSEMOVE = 160;
  48. public const int WM_NCLBUTTONDOWN = 161;
  49. public const int WM_NCLBUTTONUP = 162;
  50. public const int WM_NCLBUTTONDBLCLK = 163;
  51. public const int WM_NCRBUTTONDOWN = 164;
  52. public const int WM_NCRBUTTONUP = 165;
  53. public const int WM_NCRBUTTONDBLCLK = 166;
  54. public const int WM_NCMBUTTONDOWN = 167;
  55. public const int WM_NCMBUTTONUP = 168;
  56. public const int WM_NCMBUTTONDBLCLK = 169;
  57. public const int WM_NCUAHDRAWCAPTION = 174;
  58. public const int WM_NCUAHDRAWFRAME = 175;
  59. public const int WM_KEYDOWN = 256;
  60. public const int WM_KEYUP = 257;
  61. public const int WM_CHAR = 258;
  62. public const int WM_COMMAND = 273;
  63. public const int WM_SYSCOMMAND = 274;
  64. public const int WM_TIMER = 275;
  65. public const int WM_HSCROLL = 276;
  66. public const int WM_VSCROLL = 277;
  67. public const int WM_INITMENU = 278;
  68. public const int WM_INITMENUPOPUP = 279;
  69. public const int WM_MENUSELECT = 287;
  70. public const int WM_MENUCHAR = 288;
  71. public const int WM_ENTERIDLE = 289;
  72. public const int WM_MENURBUTTONUP = 290;
  73. public const int WM_MENUDRAG = 291;
  74. public const int WM_MENUGETOBJECT = 292;
  75. public const int WM_UNINITMENUPOPUP = 293;
  76. public const int WM_MENUCOMMAND = 294;
  77. public const int WM_CHANGEUISTATE = 295;
  78. public const int WM_UPDATEUISTATE = 296;
  79. public const int WM_QUERYUISTATE = 297;
  80. public const int WM_CTLCOLORSCROLLBAR = 311;
  81. public const int WM_MOUSEFIRST = 512;
  82. public const int WM_MOUSEMOVE = 512;
  83. public const int WM_LBUTTONDOWN = 513;
  84. public const int WM_LBUTTONUP = 514;
  85. public const int WM_LBUTTONDBLCLK = 515;
  86. public const int WM_RBUTTONDOWN = 516;
  87. public const int WM_RBUTTONUP = 517;
  88. public const int WM_RBUTTONDBLCLK = 518;
  89. public const int WM_MBUTTONDOWN = 519;
  90. public const int WM_MBUTTONUP = 520;
  91. public const int WM_MBUTTONDBLCLK = 521;
  92. public const int WM_MOUSEWHEEL = 522;
  93. public const int WM_MOUSELAST = 525;
  94. public const int WM_PARENTNOTIFY = 528;
  95. public const int WM_ENTERMENULOOP = 529;
  96. public const int WM_EXITMENULOOP = 530;
  97. public const int WM_NEXTMENU = 531;
  98. public const int WM_SIZING = 532;
  99. public const int WM_CAPTURECHANGED = 533;
  100. public const int WM_MOVING = 534;
  101. public const int WM_MDIACTIVATE = 546;
  102. public const int WM_ENTERSIZEMOVE = 561;
  103. public const int WM_EXITSIZEMOVE = 562;
  104. public const int WM_MOUSELEAVE = 675;
  105. public const int WM_MOUSEHOVER = 673;
  106. public const int WM_NCMOUSEHOVER = 672;
  107. public const int WM_NCMOUSELEAVE = 674;
  108. public const int WM_PASTE = 770;
  109. public const int WM_PRINT = 791;
  110. public const int WM_PRINTCLIENT = 792;
  111. public const int WM_THEMECHANGED = 794;
  112. }
  113. }