SB.cs 711 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class SB
  5. {
  6. public const int SB_HORZ = 0;
  7. public const int SB_VERT = 1;
  8. public const int SB_LINEUP = 0;
  9. public const int SB_LINELEFT = 0;
  10. public const int SB_LINEDOWN = 1;
  11. public const int SB_LINERIGHT = 1;
  12. public const int SB_PAGEUP = 2;
  13. public const int SB_PAGELEFT = 2;
  14. public const int SB_PAGEDOWN = 3;
  15. public const int SB_PAGERIGHT = 3;
  16. public const int SB_BOTH = 3;
  17. public const int SB_THUMBPOSITION = 4;
  18. public const int SB_THUMBTRACK = 5;
  19. public const int SB_TOP = 6;
  20. public const int SB_LEFT = 6;
  21. public const int SB_BOTTOM = 7;
  22. public const int SB_RIGHT = 7;
  23. public const int SB_ENDSCROLL = 8;
  24. }
  25. }