123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System;
- namespace LYFZ.OtherExpansion.Win32.Const
- {
- public static class WM
- {
- public const int WM_NULL = 0;
- public const int WM_CREATE = 1;
- public const int WM_DESTROY = 2;
- public const int WM_MOVE = 3;
- public const int WM_SIZE = 5;
- public const int WM_ACTIVATE = 6;
- public const int WM_SETFOCUS = 7;
- public const int WM_KILLFOCUS = 8;
- public const int WM_ENABLE = 10;
- public const int WM_SETREDRAW = 11;
- public const int WM_SETTEXT = 12;
- public const int WM_GETTEXT = 13;
- public const int WM_GETTEXTLENGTH = 14;
- public const int WM_PAINT = 15;
- public const int WM_CLOSE = 16;
- public const int WM_QUIT = 18;
- public const int WM_ERASEBKGND = 20;
- public const int WM_SYSCOLORCHANGE = 21;
- public const int WM_SHOWWINDOW = 24;
- public const int WM_ACTIVATEAPP = 28;
- public const int WM_SETCURSOR = 32;
- public const int WM_MOUSEACTIVATE = 33;
- public const int WM_GETMINMAXINFO = 36;
- public const int WM_SETFONT = 48;
- public const int WM_WINDOWPOSCHANGING = 70;
- public const int WM_WINDOWPOSCHANGED = 71;
- public const int WM_NOTIFY = 78;
- public const int WM_CONTEXTMENU = 123;
- public const int WM_STYLECHANGING = 124;
- public const int WM_STYLECHANGED = 125;
- public const int WM_DISPLAYCHANGE = 126;
- public const int WM_GETICON = 127;
- public const int WM_SETICON = 128;
- public const int WM_NCCREATE = 129;
- public const int WM_NCDESTROY = 130;
- public const int WM_NCCALCSIZE = 131;
- public const int WM_NCHITTEST = 132;
- public const int WM_NCPAINT = 133;
- public const int WM_NCACTIVATE = 134;
- public const int WM_GETDLGCODE = 135;
- public const int WM_SYNCPAINT = 136;
- public const int WM_NCMOUSEMOVE = 160;
- public const int WM_NCLBUTTONDOWN = 161;
- public const int WM_NCLBUTTONUP = 162;
- public const int WM_NCLBUTTONDBLCLK = 163;
- public const int WM_NCRBUTTONDOWN = 164;
- public const int WM_NCRBUTTONUP = 165;
- public const int WM_NCRBUTTONDBLCLK = 166;
- public const int WM_NCMBUTTONDOWN = 167;
- public const int WM_NCMBUTTONUP = 168;
- public const int WM_NCMBUTTONDBLCLK = 169;
- public const int WM_NCUAHDRAWCAPTION = 174;
- public const int WM_NCUAHDRAWFRAME = 175;
- public const int WM_KEYDOWN = 256;
- public const int WM_KEYUP = 257;
- public const int WM_CHAR = 258;
- public const int WM_COMMAND = 273;
- public const int WM_SYSCOMMAND = 274;
- public const int WM_TIMER = 275;
- public const int WM_HSCROLL = 276;
- public const int WM_VSCROLL = 277;
- public const int WM_INITMENU = 278;
- public const int WM_INITMENUPOPUP = 279;
- public const int WM_MENUSELECT = 287;
- public const int WM_MENUCHAR = 288;
- public const int WM_ENTERIDLE = 289;
- public const int WM_MENURBUTTONUP = 290;
- public const int WM_MENUDRAG = 291;
- public const int WM_MENUGETOBJECT = 292;
- public const int WM_UNINITMENUPOPUP = 293;
- public const int WM_MENUCOMMAND = 294;
- public const int WM_CHANGEUISTATE = 295;
- public const int WM_UPDATEUISTATE = 296;
- public const int WM_QUERYUISTATE = 297;
- public const int WM_CTLCOLORSCROLLBAR = 311;
- public const int WM_MOUSEFIRST = 512;
- public const int WM_MOUSEMOVE = 512;
- public const int WM_LBUTTONDOWN = 513;
- public const int WM_LBUTTONUP = 514;
- public const int WM_LBUTTONDBLCLK = 515;
- public const int WM_RBUTTONDOWN = 516;
- public const int WM_RBUTTONUP = 517;
- public const int WM_RBUTTONDBLCLK = 518;
- public const int WM_MBUTTONDOWN = 519;
- public const int WM_MBUTTONUP = 520;
- public const int WM_MBUTTONDBLCLK = 521;
- public const int WM_MOUSEWHEEL = 522;
- public const int WM_MOUSELAST = 525;
- public const int WM_PARENTNOTIFY = 528;
- public const int WM_ENTERMENULOOP = 529;
- public const int WM_EXITMENULOOP = 530;
- public const int WM_NEXTMENU = 531;
- public const int WM_SIZING = 532;
- public const int WM_CAPTURECHANGED = 533;
- public const int WM_MOVING = 534;
- public const int WM_MDIACTIVATE = 546;
- public const int WM_ENTERSIZEMOVE = 561;
- public const int WM_EXITSIZEMOVE = 562;
- public const int WM_MOUSELEAVE = 675;
- public const int WM_MOUSEHOVER = 673;
- public const int WM_NCMOUSEHOVER = 672;
- public const int WM_NCMOUSELEAVE = 674;
- public const int WM_PASTE = 770;
- public const int WM_PRINT = 791;
- public const int WM_PRINTCLIENT = 792;
- public const int WM_THEMECHANGED = 794;
- }
- }
|