Enums.cs
上传用户:nnpulika
上传日期:2013-02-15
资源大小:597k
文件大小:1k
源码类别:

状态条

开发平台:

C#

  1. namespace UtilityLibrary.WinControls
  2. {
  3. #region DrawState
  4. public enum DrawState
  5. {
  6. Normal,
  7. Hot,
  8. Pressed,
  9. Disable
  10. }
  11. #endregion
  12. #region ScrollBarEvent
  13. public enum ScrollBarEvent
  14. {
  15. LineUp,
  16. LineDown,
  17. PageUp,
  18. PageDown,
  19. ThumbUp,
  20. ThumbDown
  21. }
  22. #endregion
  23. #region ScrollBarHit
  24. public enum ScrollBarHit
  25. {
  26. UpArrow,
  27. DownArrow,
  28. PageUp,
  29. PageDown,
  30. Thumb,
  31. LeftArrow,
  32. RightArrow,
  33. PageLeft,
  34. PageRight,
  35. None
  36. }
  37. #endregion
  38. #region Orientation
  39. public enum Orientation
  40. {
  41. Vertical,
  42. Horizontal
  43. }
  44. #endregion
  45. }