PaintScrollBarThumbEventArgs.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. namespace LYFZ.OtherExpansion.SkinControl
  6. {
  7. public class PaintScrollBarThumbEventArgs : IDisposable
  8. {
  9. private Graphics _graphics;
  10. private Rectangle _thumbRect;
  11. private ControlState _controlState;
  12. private Orientation _orientation;
  13. private bool _enabled;
  14. public Graphics Graphics
  15. {
  16. get
  17. {
  18. return this._graphics;
  19. }
  20. set
  21. {
  22. this._graphics = value;
  23. }
  24. }
  25. public Rectangle ThumbRectangle
  26. {
  27. get
  28. {
  29. return this._thumbRect;
  30. }
  31. set
  32. {
  33. this._thumbRect = value;
  34. }
  35. }
  36. public ControlState ControlState
  37. {
  38. get
  39. {
  40. return this._controlState;
  41. }
  42. set
  43. {
  44. this._controlState = value;
  45. }
  46. }
  47. public Orientation Orientation
  48. {
  49. get
  50. {
  51. return this._orientation;
  52. }
  53. set
  54. {
  55. this._orientation = value;
  56. }
  57. }
  58. public bool Enabled
  59. {
  60. get
  61. {
  62. return this._enabled;
  63. }
  64. set
  65. {
  66. this._enabled = value;
  67. }
  68. }
  69. public PaintScrollBarThumbEventArgs(Graphics graphics, Rectangle thumbRect, ControlState controlState, Orientation orientation) : this(graphics, thumbRect, controlState, orientation, true)
  70. {
  71. }
  72. public PaintScrollBarThumbEventArgs(Graphics graphics, Rectangle thumbRect, ControlState controlState, Orientation orientation, bool enabled)
  73. {
  74. this._graphics = graphics;
  75. this._thumbRect = thumbRect;
  76. this._controlState = controlState;
  77. this._orientation = orientation;
  78. this._enabled = enabled;
  79. }
  80. public void Dispose()
  81. {
  82. this._graphics = null;
  83. }
  84. }
  85. }