PaintScrollBarArrowEventArgs.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 PaintScrollBarArrowEventArgs : IDisposable
  8. {
  9. private Graphics _graphics;
  10. private Rectangle _arrowRect;
  11. private ControlState _controlState;
  12. private ArrowDirection _arrowDirection;
  13. private Orientation _orientation;
  14. private bool _enabled;
  15. public Graphics Graphics
  16. {
  17. get
  18. {
  19. return this._graphics;
  20. }
  21. set
  22. {
  23. this._graphics = value;
  24. }
  25. }
  26. public Rectangle ArrowRectangle
  27. {
  28. get
  29. {
  30. return this._arrowRect;
  31. }
  32. set
  33. {
  34. this._arrowRect = value;
  35. }
  36. }
  37. public ControlState ControlState
  38. {
  39. get
  40. {
  41. return this._controlState;
  42. }
  43. set
  44. {
  45. this._controlState = value;
  46. }
  47. }
  48. public ArrowDirection ArrowDirection
  49. {
  50. get
  51. {
  52. return this._arrowDirection;
  53. }
  54. set
  55. {
  56. this._arrowDirection = value;
  57. }
  58. }
  59. public Orientation Orientation
  60. {
  61. get
  62. {
  63. return this._orientation;
  64. }
  65. set
  66. {
  67. this._orientation = value;
  68. }
  69. }
  70. public bool Enabled
  71. {
  72. get
  73. {
  74. return this._enabled;
  75. }
  76. set
  77. {
  78. this._enabled = value;
  79. }
  80. }
  81. public PaintScrollBarArrowEventArgs(Graphics graphics, Rectangle arrowRect, ControlState controlState, ArrowDirection arrowDirection, Orientation orientation) : this(graphics, arrowRect, controlState, arrowDirection, orientation, true)
  82. {
  83. }
  84. public PaintScrollBarArrowEventArgs(Graphics graphics, Rectangle arrowRect, ControlState controlState, ArrowDirection arrowDirection, Orientation orientation, bool enabled)
  85. {
  86. this._graphics = graphics;
  87. this._arrowRect = arrowRect;
  88. this._controlState = controlState;
  89. this._arrowDirection = arrowDirection;
  90. this._orientation = orientation;
  91. this._enabled = enabled;
  92. }
  93. public void Dispose()
  94. {
  95. this._graphics = null;
  96. }
  97. }
  98. }