UCtlScroolBarH.cs 20 KB

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