UCtlScrollBarV.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Windows.Forms.Design;
  9. using System.Diagnostics;
  10. namespace LYFZ.ComponentLibrary
  11. {
  12. [Designer(typeof(ScrollbarControlDesigner))]
  13. public class CtlScrollBarV : UserControl {
  14. protected Color moChannelColor = Color.Empty;
  15. protected Image moUpArrowImage = null;
  16. //protected Image moUpArrowImage_Over = null;
  17. //protected Image moUpArrowImage_Down = null;
  18. protected Image moDownArrowImage = null;
  19. //protected Image moDownArrowImage_Over = null;
  20. //protected Image moDownArrowImage_Down = null;
  21. protected Image moThumbArrowImage = null;
  22. protected Image moThumbTopImage = null;
  23. protected Image moThumbTopSpanImage = null;
  24. protected Image moThumbBottomImage = null;
  25. protected Image moThumbBottomSpanImage = null;
  26. protected Image moThumbMiddleImage = null;
  27. protected int moLargeChange = 10;
  28. protected int moSmallChange = 1;
  29. protected int moMinimum = 0;
  30. protected int moMaximum = 100;
  31. protected int moValue = 0;
  32. private int nClickPoint;
  33. protected int moThumbTop = 0;
  34. protected bool moAutoSize = false;
  35. private bool moThumbDown = false;
  36. private bool moThumbDragging = false;
  37. public new event EventHandler Scroll = null;
  38. public event EventHandler ValueChanged = null;
  39. private int GetThumbHeight()
  40. {
  41. int nTrackHeight = (this.Height - (UpArrowImage.Height + DownArrowImage.Height));
  42. float fThumbHeight = ((float)LargeChange / (float)Maximum) * nTrackHeight;
  43. int nThumbHeight = (int)fThumbHeight;
  44. if (nThumbHeight > nTrackHeight)
  45. {
  46. nThumbHeight = nTrackHeight;
  47. fThumbHeight = nTrackHeight;
  48. }
  49. if (nThumbHeight < 56)
  50. {
  51. nThumbHeight = 56;
  52. fThumbHeight = 56;
  53. }
  54. return nThumbHeight;
  55. }
  56. public CtlScrollBarV()
  57. {
  58. InitializeComponent();
  59. SetStyle(ControlStyles.ResizeRedraw, true);
  60. SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  61. SetStyle(ControlStyles.DoubleBuffer, true);
  62. moChannelColor = Color.FromArgb(194, 211, 255);
  63. UpArrowImage =LYFZ.ComponentLibrary.Properties.Resources.uparrow;
  64. DownArrowImage = LYFZ.ComponentLibrary.Properties.Resources.downarrow;
  65. ThumbBottomImage = LYFZ.ComponentLibrary.Properties.Resources.ThumbBottom;
  66. ThumbBottomSpanImage = LYFZ.ComponentLibrary.Properties.Resources.ThumbSpanBottom;
  67. ThumbTopImage = LYFZ.ComponentLibrary.Properties.Resources.ThumbTop;
  68. ThumbTopSpanImage = LYFZ.ComponentLibrary.Properties.Resources.ThumbSpanTop;
  69. ThumbMiddleImage = LYFZ.ComponentLibrary.Properties.Resources.ThumbMiddleV;
  70. this.Width = UpArrowImage.Width;
  71. base.MinimumSize = new Size(UpArrowImage.Width, UpArrowImage.Height + DownArrowImage.Height + GetThumbHeight());
  72. }
  73. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("LargeChange")]
  74. public int LargeChange {
  75. get { return moLargeChange; }
  76. set { moLargeChange = value;
  77. Invalidate();
  78. }
  79. }
  80. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("SmallChange")]
  81. public int SmallChange {
  82. get { return moSmallChange; }
  83. set { moSmallChange = value;
  84. Invalidate();
  85. }
  86. }
  87. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Minimum")]
  88. public int Minimum {
  89. get { return moMinimum; }
  90. set { moMinimum = value;
  91. Invalidate();
  92. }
  93. }
  94. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Maximum")]
  95. public int Maximum {
  96. get { return moMaximum; }
  97. set { moMaximum = value;
  98. Invalidate();
  99. }
  100. }
  101. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Value")]
  102. public int Value {
  103. get { return moValue; }
  104. set { moValue = value;
  105. int nTrackHeight = (this.Height - (UpArrowImage.Height + DownArrowImage.Height));
  106. float fThumbHeight = ((float)LargeChange / (float)Maximum) * nTrackHeight;
  107. int nThumbHeight = (int)fThumbHeight;
  108. if (nThumbHeight > nTrackHeight)
  109. {
  110. nThumbHeight = nTrackHeight;
  111. fThumbHeight = nTrackHeight;
  112. }
  113. if (nThumbHeight < 56)
  114. {
  115. nThumbHeight = 56;
  116. fThumbHeight = 56;
  117. }
  118. //figure out value
  119. int nPixelRange = nTrackHeight - nThumbHeight;
  120. int nRealRange = (Maximum - Minimum)-LargeChange;
  121. float fPerc = 0.0f;
  122. if (nRealRange != 0)
  123. {
  124. fPerc = (float)moValue / (float)nRealRange;
  125. }
  126. float fTop = fPerc * nPixelRange;
  127. moThumbTop = (int)fTop;
  128. Invalidate();
  129. }
  130. }
  131. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Channel Color")]
  132. public Color ChannelColor
  133. {
  134. get { return moChannelColor; }
  135. set { moChannelColor = value; }
  136. }
  137. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  138. public Image UpArrowImage {
  139. get { return moUpArrowImage; }
  140. set { moUpArrowImage = value; }
  141. }
  142. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  143. public Image DownArrowImage {
  144. get { return moDownArrowImage; }
  145. set { moDownArrowImage = value; }
  146. }
  147. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  148. public Image ThumbTopImage {
  149. get { return moThumbTopImage; }
  150. set { moThumbTopImage = value; }
  151. }
  152. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  153. public Image ThumbTopSpanImage {
  154. get { return moThumbTopSpanImage; }
  155. set { moThumbTopSpanImage = value; }
  156. }
  157. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  158. public Image ThumbBottomImage {
  159. get { return moThumbBottomImage; }
  160. set { moThumbBottomImage = value; }
  161. }
  162. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  163. public Image ThumbBottomSpanImage {
  164. get { return moThumbBottomSpanImage; }
  165. set { moThumbBottomSpanImage = value; }
  166. }
  167. [EditorBrowsable(EditorBrowsableState.Always), Browsable(true), DefaultValue(false), Category("组件扩展属性"), Description("Up Arrow Graphic")]
  168. public Image ThumbMiddleImage {
  169. get { return moThumbMiddleImage; }
  170. set { moThumbMiddleImage = value; }
  171. }
  172. protected override void OnPaint(PaintEventArgs e) {
  173. e.Graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor;
  174. if (UpArrowImage != null) {
  175. e.Graphics.DrawImage(UpArrowImage, new Rectangle(new Point(0,0), new Size(this.Width, UpArrowImage.Height)));
  176. }
  177. Brush oBrush = new SolidBrush(moChannelColor);
  178. Brush oWhiteBrush = new SolidBrush(Color.FromArgb(255,255,255));
  179. //draw channel left and right border colors
  180. e.Graphics.FillRectangle(oWhiteBrush, new Rectangle(0,UpArrowImage.Height, 1, (this.Height-DownArrowImage.Height)));
  181. e.Graphics.FillRectangle(oWhiteBrush, new Rectangle(this.Width-1, UpArrowImage.Height, 1, (this.Height - DownArrowImage.Height)));
  182. //draw channel
  183. e.Graphics.FillRectangle(oBrush, new Rectangle(1, UpArrowImage.Height, this.Width-2, (this.Height-DownArrowImage.Height)));
  184. //draw thumb
  185. int nTrackHeight = (this.Height - (UpArrowImage.Height + DownArrowImage.Height));
  186. float fThumbHeight = ((float)LargeChange / (float)Maximum) * nTrackHeight;
  187. int nThumbHeight = (int)fThumbHeight;
  188. if (nThumbHeight > nTrackHeight) {
  189. nThumbHeight = nTrackHeight;
  190. fThumbHeight = nTrackHeight;
  191. }
  192. if (nThumbHeight < 56) {
  193. nThumbHeight = 56;
  194. fThumbHeight = 56;
  195. }
  196. //Debug.WriteLine(nThumbHeight.ToString());
  197. float fSpanHeight = (fThumbHeight - (ThumbMiddleImage.Height + ThumbTopImage.Height + ThumbBottomImage.Height)) / 2.0f;
  198. int nSpanHeight = (int)fSpanHeight;
  199. int nTop = moThumbTop;
  200. nTop += UpArrowImage.Height;
  201. //draw top
  202. e.Graphics.DrawImage(ThumbTopImage, new Rectangle(1, nTop, this.Width - 2, ThumbTopImage.Height));
  203. nTop += ThumbTopImage.Height;
  204. //draw top span
  205. Rectangle rect = new Rectangle(1, nTop, this.Width - 2, nSpanHeight);
  206. e.Graphics.DrawImage(ThumbTopSpanImage, 1.0f,(float)nTop, (float)this.Width-2.0f, (float) fSpanHeight*2);
  207. nTop += nSpanHeight;
  208. //draw middle
  209. e.Graphics.DrawImage(ThumbMiddleImage, new Rectangle(1, nTop, this.Width - 2, ThumbMiddleImage.Height));
  210. nTop += ThumbMiddleImage.Height;
  211. //draw top span
  212. rect = new Rectangle(1, nTop, this.Width - 2, nSpanHeight*2);
  213. e.Graphics.DrawImage(ThumbBottomSpanImage, rect);
  214. nTop += nSpanHeight;
  215. //draw bottom
  216. e.Graphics.DrawImage(ThumbBottomImage, new Rectangle(1, nTop, this.Width - 2, nSpanHeight));
  217. if (DownArrowImage != null) {
  218. e.Graphics.DrawImage(DownArrowImage, new Rectangle(new Point(0, (this.Height-DownArrowImage.Height)), new Size(this.Width, DownArrowImage.Height)));
  219. }
  220. }
  221. public override bool AutoSize {
  222. get {
  223. return base.AutoSize;
  224. }
  225. set {
  226. base.AutoSize = value;
  227. if (base.AutoSize) {
  228. this.Width = moUpArrowImage.Width;
  229. }
  230. }
  231. }
  232. private void InitializeComponent() {
  233. this.SuspendLayout();
  234. //
  235. // CustomScrollbar
  236. //
  237. this.Name = "CustomScrollbar";
  238. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.CustomScrollbar_MouseDown);
  239. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.CustomScrollbar_MouseMove);
  240. this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CustomScrollbar_MouseUp);
  241. this.ResumeLayout(false);
  242. }
  243. private void CustomScrollbar_MouseDown(object sender, MouseEventArgs e) {
  244. Point ptPoint = this.PointToClient(Cursor.Position);
  245. int nTrackHeight = (this.Height - (UpArrowImage.Height + DownArrowImage.Height));
  246. float fThumbHeight = ((float)LargeChange / (float)Maximum) * nTrackHeight;
  247. int nThumbHeight = (int)fThumbHeight;
  248. if (nThumbHeight > nTrackHeight) {
  249. nThumbHeight = nTrackHeight;
  250. fThumbHeight = nTrackHeight;
  251. }
  252. if (nThumbHeight < 56) {
  253. nThumbHeight = 56;
  254. fThumbHeight = 56;
  255. }
  256. int nTop = moThumbTop;
  257. nTop += UpArrowImage.Height;
  258. Rectangle thumbrect = new Rectangle(new Point(1, nTop), new Size(ThumbMiddleImage.Width, nThumbHeight));
  259. if (thumbrect.Contains(ptPoint))
  260. {
  261. //hit the thumb
  262. nClickPoint = (ptPoint.Y - nTop);
  263. //MessageBox.Show(Convert.ToString((ptPoint.Y - nTop)));
  264. this.moThumbDown = true;
  265. }
  266. Rectangle uparrowrect = new Rectangle(new Point(1, 0), new Size(UpArrowImage.Width, UpArrowImage.Height));
  267. if (uparrowrect.Contains(ptPoint))
  268. {
  269. int nRealRange = (Maximum - Minimum)-LargeChange;
  270. int nPixelRange = (nTrackHeight - nThumbHeight);
  271. if (nRealRange > 0)
  272. {
  273. if (nPixelRange > 0)
  274. {
  275. if ((moThumbTop - SmallChange) < 0)
  276. moThumbTop = 0;
  277. else
  278. moThumbTop -= SmallChange;
  279. //figure out value
  280. float fPerc = (float)moThumbTop / (float)nPixelRange;
  281. float fValue = fPerc * (Maximum - LargeChange);
  282. moValue = (int)fValue;
  283. Debug.WriteLine(moValue.ToString());
  284. if (ValueChanged != null)
  285. ValueChanged(this, new EventArgs());
  286. if (Scroll != null)
  287. Scroll(this, new EventArgs());
  288. Invalidate();
  289. }
  290. }
  291. }
  292. Rectangle downarrowrect = new Rectangle(new Point(1, UpArrowImage.Height+nTrackHeight), new Size(UpArrowImage.Width, UpArrowImage.Height));
  293. if (downarrowrect.Contains(ptPoint))
  294. {
  295. int nRealRange = (Maximum - Minimum) - LargeChange;
  296. int nPixelRange = (nTrackHeight - nThumbHeight);
  297. if (nRealRange > 0)
  298. {
  299. if (nPixelRange > 0)
  300. {
  301. if ((moThumbTop + SmallChange) > nPixelRange)
  302. moThumbTop = nPixelRange;
  303. else
  304. moThumbTop += SmallChange;
  305. //figure out value
  306. float fPerc = (float)moThumbTop / (float)nPixelRange;
  307. float fValue = fPerc * (Maximum-LargeChange);
  308. moValue = (int)fValue;
  309. Debug.WriteLine(moValue.ToString());
  310. if (ValueChanged != null)
  311. ValueChanged(this, new EventArgs());
  312. if (Scroll != null)
  313. Scroll(this, new EventArgs());
  314. Invalidate();
  315. }
  316. }
  317. }
  318. }
  319. private void CustomScrollbar_MouseUp(object sender, MouseEventArgs e) {
  320. this.moThumbDown = false;
  321. this.moThumbDragging = false;
  322. }
  323. private void MoveThumb(int y) {
  324. int nRealRange = Maximum - Minimum;
  325. int nTrackHeight = (this.Height - (UpArrowImage.Height + DownArrowImage.Height));
  326. float fThumbHeight = ((float)LargeChange / (float)Maximum) * nTrackHeight;
  327. int nThumbHeight = (int)fThumbHeight;
  328. if (nThumbHeight > nTrackHeight) {
  329. nThumbHeight = nTrackHeight;
  330. fThumbHeight = nTrackHeight;
  331. }
  332. if (nThumbHeight < 56) {
  333. nThumbHeight = 56;
  334. fThumbHeight = 56;
  335. }
  336. int nSpot = nClickPoint;
  337. int nPixelRange = (nTrackHeight - nThumbHeight);
  338. if (moThumbDown && nRealRange > 0) {
  339. if (nPixelRange > 0) {
  340. int nNewThumbTop = y - (UpArrowImage.Height+nSpot);
  341. if(nNewThumbTop<0)
  342. {
  343. moThumbTop = nNewThumbTop = 0;
  344. }
  345. else if(nNewThumbTop > nPixelRange)
  346. {
  347. moThumbTop = nNewThumbTop = nPixelRange;
  348. }
  349. else {
  350. moThumbTop = y - (UpArrowImage.Height + nSpot);
  351. }
  352. //figure out value
  353. float fPerc = (float)moThumbTop / (float)nPixelRange;
  354. float fValue = fPerc * (Maximum-LargeChange);
  355. moValue = (int)fValue;
  356. Debug.WriteLine(moValue.ToString());
  357. Application.DoEvents();
  358. Invalidate();
  359. }
  360. }
  361. }
  362. private void CustomScrollbar_MouseMove(object sender, MouseEventArgs e) {
  363. if(moThumbDown == true)
  364. {
  365. this.moThumbDragging = true;
  366. }
  367. if (this.moThumbDragging) {
  368. MoveThumb(e.Y);
  369. }
  370. if(ValueChanged != null)
  371. ValueChanged(this, new EventArgs());
  372. if(Scroll != null)
  373. Scroll(this, new EventArgs());
  374. }
  375. }
  376. internal class ScrollbarControlDesigner : System.Windows.Forms.Design.ControlDesigner {
  377. public override SelectionRules SelectionRules {
  378. get {
  379. SelectionRules selectionRules = base.SelectionRules;
  380. PropertyDescriptor propDescriptor = TypeDescriptor.GetProperties(this.Component)["AutoSize"];
  381. if (propDescriptor != null) {
  382. bool autoSize = (bool)propDescriptor.GetValue(this.Component);
  383. if (autoSize) {
  384. selectionRules = SelectionRules.Visible | SelectionRules.Moveable | SelectionRules.BottomSizeable | SelectionRules.TopSizeable;
  385. }
  386. else {
  387. selectionRules = SelectionRules.Visible | SelectionRules.AllSizeable | SelectionRules.Moveable;
  388. }
  389. }
  390. return selectionRules;
  391. }
  392. }
  393. }
  394. }