SkinGifBox.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. internal class SkinGifBox : Control
  7. {
  8. private Image _image;
  9. private Rectangle _imageRectangle;
  10. private EventHandler _eventAnimator;
  11. private bool _canAnimate;
  12. private Color _borderColor = Color.Transparent;
  13. public Image Image
  14. {
  15. get
  16. {
  17. return this._image;
  18. }
  19. set
  20. {
  21. this.StopAnimate();
  22. this._image = value;
  23. this._imageRectangle = Rectangle.Empty;
  24. if (value != null)
  25. {
  26. this._canAnimate = ImageAnimator.CanAnimate(this._image);
  27. }
  28. else
  29. {
  30. this._canAnimate = false;
  31. }
  32. base.Size = this.Image.Size;
  33. base.Invalidate(this.ImageRectangle);
  34. if (!base.DesignMode)
  35. {
  36. this.StartAnimate();
  37. }
  38. }
  39. }
  40. public Color BorderColor
  41. {
  42. get
  43. {
  44. return this._borderColor;
  45. }
  46. set
  47. {
  48. this._borderColor = value;
  49. base.Invalidate();
  50. }
  51. }
  52. private Rectangle ImageRectangle
  53. {
  54. get
  55. {
  56. if (this._imageRectangle == Rectangle.Empty && this._image != null)
  57. {
  58. this._imageRectangle.X = (base.Width - this._image.Width) / 2;
  59. this._imageRectangle.Y = (base.Height - this._image.Height) / 2;
  60. this._imageRectangle.Width = this._image.Width;
  61. this._imageRectangle.Height = this._image.Height;
  62. }
  63. return this._imageRectangle;
  64. }
  65. }
  66. private bool CanAnimate
  67. {
  68. get
  69. {
  70. return this._canAnimate;
  71. }
  72. }
  73. private EventHandler EventAnimator
  74. {
  75. get
  76. {
  77. if (this._eventAnimator == null)
  78. {
  79. this._eventAnimator = delegate(object sender, EventArgs e)
  80. {
  81. base.Invalidate(this.ImageRectangle);
  82. };
  83. }
  84. return this._eventAnimator;
  85. }
  86. }
  87. public SkinGifBox()
  88. {
  89. base.SetStyle(ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor | ControlStyles.AllPaintingInWmPaint | ControlStyles.CacheText | ControlStyles.OptimizedDoubleBuffer, true);
  90. base.SetStyle(ControlStyles.Opaque, false);
  91. }
  92. protected override void OnSizeChanged(EventArgs e)
  93. {
  94. this._imageRectangle = Rectangle.Empty;
  95. base.OnSizeChanged(e);
  96. }
  97. protected override void OnPaint(PaintEventArgs e)
  98. {
  99. if (this._image != null)
  100. {
  101. this.UpdateImage();
  102. e.Graphics.DrawImage(this._image, this.ImageRectangle, 0, 0, this._image.Width, this._image.Height, GraphicsUnit.Pixel);
  103. }
  104. ControlPaint.DrawBorder(e.Graphics, base.ClientRectangle, this._borderColor, ButtonBorderStyle.Solid);
  105. }
  106. protected override void Dispose(bool disposing)
  107. {
  108. base.Dispose(disposing);
  109. if (disposing)
  110. {
  111. this._eventAnimator = null;
  112. this._canAnimate = false;
  113. if (this._image != null)
  114. {
  115. this._image = null;
  116. }
  117. }
  118. }
  119. protected override void OnHandleDestroyed(EventArgs e)
  120. {
  121. base.OnHandleDestroyed(e);
  122. this.StopAnimate();
  123. }
  124. private void StartAnimate()
  125. {
  126. if (this.CanAnimate)
  127. {
  128. ImageAnimator.Animate(this._image, this.EventAnimator);
  129. }
  130. }
  131. private void StopAnimate()
  132. {
  133. if (this.CanAnimate)
  134. {
  135. ImageAnimator.StopAnimate(this._image, this.EventAnimator);
  136. }
  137. }
  138. private void UpdateImage()
  139. {
  140. if (this.CanAnimate)
  141. {
  142. ImageAnimator.UpdateFrames(this._image);
  143. }
  144. }
  145. }
  146. }