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

状态条

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Windows.Forms;
  7. using UtilityLibrary.General;
  8. namespace UtilityLibrary.WinControls
  9. {
  10. /// <summary>
  11. /// Summary description for Scrollable Picture
  12. /// </summary>
  13. [ToolboxItem(false)]
  14. public class ScrollablePicture : System.Windows.Forms.Control
  15. {
  16. #region Class Variables
  17. Bitmap image = null;
  18. IntPtr hImage = IntPtr.Zero;
  19. VScrollBarEx vScrollBar = null;
  20. HScrollBarEx hScrollBar = null;
  21. // Initial Picture Position
  22. int xPos = 0;
  23. int yPos = 0;
  24.      
  25. #endregion
  26. #region Constructors
  27. public ScrollablePicture()
  28. {
  29. // We are going to do all of the painting so better 
  30. // setup the control to use double buffering
  31. SetStyle(ControlStyles.AllPaintingInWmPaint|ControlStyles.ResizeRedraw|
  32. ControlStyles.Opaque|ControlStyles.UserPaint|ControlStyles.DoubleBuffer, true);
  33. TabStop = false;
  34. // Construct scrollbars controls
  35. vScrollBar = new VScrollBarEx(this);
  36. hScrollBar = new HScrollBarEx(this);
  37. // Setup event listeners
  38. vScrollBar.LineUp += new EventHandler(OnYPosChange);
  39. vScrollBar.LineDown += new EventHandler(OnYPosChange);
  40. vScrollBar.ThumbUp += new ThumbHandler(OnYThumbChange);
  41. vScrollBar.ThumbDown += new ThumbHandler(OnYThumbChange);
  42. vScrollBar.PageUp += new EventHandler(OnYPosChange);
  43. vScrollBar.PageDown += new EventHandler(OnYPosChange);
  44. hScrollBar.LineLeft += new EventHandler(OnXPosChange);
  45. hScrollBar.LineRight += new EventHandler(OnXPosChange);
  46. hScrollBar.ThumbLeft += new ThumbHandler(OnXThumbChange);
  47. hScrollBar.ThumbRight += new ThumbHandler(OnXThumbChange);
  48. hScrollBar.PageLeft += new EventHandler(OnXPosChange);
  49. hScrollBar.PageRight += new EventHandler(OnXPosChange);
  50. }
  51. #endregion
  52. #region Overrides
  53. protected override void OnPaint(PaintEventArgs pe)
  54. {
  55. base.OnPaint(pe);
  56. Graphics g = pe.Graphics;
  57. if ( image != null )
  58. {
  59. Rectangle rc = ClientRectangle;
  60. // Fill out background wiht Control color
  61. g.FillRectangle(SystemBrushes.Control, rc);
  62. // Take into account whether scrollbars are
  63. // displayed or not
  64. int hThumb = hScrollBar.HThumb;
  65. int vThumb = hScrollBar.VThumb;
  66. if ( !vScrollBar.Visible ) hThumb = 0;
  67. if ( !hScrollBar.Visible ) vThumb = 0;
  68.                 // GDI+ is too slow for my taste, do the painting using regular GDI
  69. GDIUtil.BlitBitmap(g, new Rectangle(0, 0, rc.Width-hThumb, rc.Height-vThumb), xPos, yPos, hImage);
  70. }
  71. }
  72. protected override void OnHandleCreated(EventArgs e)
  73. {
  74. base.OnHandleCreated(e);
  75. // Add scrollBars to this control
  76. Controls.AddRange(new System.Windows.Forms.Control[] {hScrollBar, vScrollBar});
  77. }
  78. protected override void OnSizeChanged(EventArgs e)
  79. {
  80. // Size changed, recalculate dimensions
  81. SetupScrollBars();
  82. base.OnSizeChanged(e);
  83. }
  84. protected override void OnVisibleChanged(EventArgs e)
  85. {
  86. base.OnVisibleChanged(e);
  87. if ( Visible )
  88. {
  89. // Wait until parent window is being displayed
  90. // to correctly calculate the scrollbars dimensions
  91. SetupScrollBars();
  92. }
  93. }
  94. #endregion
  95. #region Properties
  96. public VScrollBarEx VScrollBar
  97. {
  98. set 
  99. {
  100. vScrollBar = value; 
  101. vScrollBar.Invalidate();
  102. }
  103. get { return vScrollBar; }
  104. }
  105. public HScrollBarEx HScrollBar
  106. {
  107. set 
  108. {
  109. hScrollBar = value; 
  110. hScrollBar.Invalidate();
  111. }
  112. get { return hScrollBar; }
  113. }
  114. public Bitmap Image
  115. {
  116. set 
  117. {
  118. image = value;
  119. hImage = image.GetHbitmap();
  120. SetupScrollBars();
  121. Invalidate();
  122. }
  123. get { return image; }
  124. }
  125. #endregion
  126. #region Implementation
  127. void SetupScrollBars()
  128. {
  129. if ( image != null && ClientRectangle.Width != 0 && ClientRectangle.Height != 0)
  130. {
  131. // Check if we need to show the scrollbars first
  132. if ( image.Width <= ClientRectangle.Width )
  133. {
  134. hScrollBar.Visible = false;
  135. }
  136. else
  137. {
  138. // If it is not visible make it so
  139. hScrollBar.Visible = true;
  140. }
  141. if ( image.Height <= ClientRectangle.Height )
  142. {
  143. vScrollBar.Visible = false;
  144. }
  145. else
  146. {
  147. // If it is not visible make it so
  148. vScrollBar.Visible = true;
  149. }
  150. // Check if we need to leave the righ bottom empty square
  151. // when using both scrollbars
  152. if ( vScrollBar.Visible && hScrollBar.Visible)
  153. {
  154. hScrollBar.UsingBothScrollBars = true;
  155. vScrollBar.UsingBothScrollBars = true;
  156. }
  157. else 
  158. {
  159. hScrollBar.UsingBothScrollBars = false;
  160. vScrollBar.UsingBothScrollBars = false;
  161. }
  162. // Now dimension the scrollbars settings
  163. if ( hScrollBar.Visible )
  164. {
  165. int vThumb = hScrollBar.VThumb;
  166. if ( !vScrollBar.Visible ) vThumb = 0;
  167. int workingWidth = (ClientRectangle.Width - vThumb);
  168. hScrollBar.Position = 0;
  169. hScrollBar.Minimum = 0;
  170. hScrollBar.Maximum = image.Width;
  171. hScrollBar.LargeChange = workingWidth;
  172. hScrollBar.SmallChange = workingWidth/10;
  173. hScrollBar.Invalidate();
  174. }
  175. if ( vScrollBar.Visible )
  176. {
  177. int hThumb = vScrollBar.HThumb;
  178. if ( !hScrollBar.Visible ) hThumb = 0;
  179. int workingHeight = (ClientRectangle.Height - hThumb);
  180. vScrollBar.Position = 0;
  181. vScrollBar.Minimum = 0;
  182. vScrollBar.Maximum = image.Height;
  183. vScrollBar.LargeChange = workingHeight;
  184. vScrollBar.SmallChange = workingHeight/10;
  185. vScrollBar.Invalidate();
  186. }
  187. // Reset Picture position
  188. xPos = 0;
  189. yPos = 0;
  190. }
  191. }
  192. void OnYPosChange(object sender, EventArgs e)
  193. {
  194. yPos = vScrollBar.Position;
  195. Invalidate();
  196. }
  197. void OnYThumbChange(object sender, int delta)
  198. {
  199. yPos = vScrollBar.Position;
  200. Invalidate();
  201. }
  202. void OnXPosChange(object sender, EventArgs e)
  203. {
  204. xPos = hScrollBar.Position;
  205. Invalidate();
  206. }
  207. void OnXThumbChange(object sender, int delta)
  208. {
  209. xPos = hScrollBar.Position;
  210. Invalidate();
  211. }
  212. #endregion
  213. }
  214. }