PaintScrollBarTrackEventArgs.cs 1.2 KB

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