TBM.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class TBM
  5. {
  6. private const int WM_USER = 1024;
  7. public const int TBM_GETRANGEMIN = 1025;
  8. public const int TBM_GETRANGEMAX = 1026;
  9. public const int TBM_GETTIC = 1027;
  10. public const int TBM_SETTIC = 1028;
  11. public const int TBM_SETPOS = 1029;
  12. public const int TBM_SETRANGE = 1030;
  13. public const int TBM_SETRANGEMIN = 1031;
  14. public const int TBM_SETRANGEMAX = 1032;
  15. public const int TBM_CLEARTICS = 1033;
  16. public const int TBM_SETSEL = 1034;
  17. public const int TBM_SETSELSTART = 1035;
  18. public const int TBM_SETSELEND = 1036;
  19. public const int TBM_GETPTICS = 1038;
  20. public const int TBM_GETTICPOS = 1039;
  21. public const int TBM_GETNUMTICS = 1040;
  22. public const int TBM_GETSELSTART = 1041;
  23. public const int TBM_GETSELEND = 1042;
  24. public const int TBM_CLEARSEL = 1043;
  25. public const int TBM_SETTICFREQ = 1044;
  26. public const int TBM_SETPAGESIZE = 1045;
  27. public const int TBM_GETPAGESIZE = 1046;
  28. public const int TBM_SETLINESIZE = 1047;
  29. public const int TBM_GETLINESIZE = 1048;
  30. public const int TBM_GETTHUMBRECT = 1049;
  31. public const int TBM_GETCHANNELRECT = 1050;
  32. public const int TBM_SETTHUMBLENGTH = 1051;
  33. public const int TBM_GETTHUMBLENGTH = 1052;
  34. }
  35. }