SkinProgressBar.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using LYFZ.OtherExpansion.Win32;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.ComponentModel;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.Windows.Forms;
  9. namespace LYFZ.OtherExpansion.SkinControl
  10. {
  11. [ToolboxBitmap(typeof(ProgressBar))]
  12. public class SkinProgressBar : ProgressBar
  13. {
  14. private const int Internal = 10;
  15. private const int MarqueeWidth = 100;
  16. private BufferedGraphicsContext _context;
  17. private BufferedGraphics _bufferedGraphics;
  18. private bool _bPainting;
  19. private int _trackX = -100;
  20. private Timer _timer;
  21. private string _formatString = "{0:0.0%}";
  22. private bool barGlass = true;
  23. private bool glass = true;
  24. private BackStyle barBackStyle;
  25. private Size barMinusSize = new Size(1, 1);
  26. private bool txtShow = true;
  27. private int radius = 2;
  28. private RoundStyle radiusStyle = RoundStyle.All;
  29. private int barradius = 2;
  30. private RoundStyle barradiusStyle = RoundStyle.All;
  31. private Image back;
  32. private Image barBack;
  33. private Color _trackBack = Color.FromArgb(185, 185, 185);
  34. private Color _trackFore = Color.FromArgb(15, 181, 43);
  35. private Color _border = Color.FromArgb(158, 158, 158);
  36. private Color _innerBorder = Color.FromArgb(200, 250, 250, 250);
  37. [Category("Bar"), DefaultValue(typeof(bool), "true"), Description("滚动条是否启用颜色渐变")]
  38. public bool BarGlass
  39. {
  40. get
  41. {
  42. return this.barGlass;
  43. }
  44. set
  45. {
  46. if (this.barGlass != value)
  47. {
  48. this.barGlass = value;
  49. base.Invalidate();
  50. }
  51. }
  52. }
  53. [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("控件是否启用颜色渐变")]
  54. public bool Glass
  55. {
  56. get
  57. {
  58. return this.glass;
  59. }
  60. set
  61. {
  62. if (this.glass != value)
  63. {
  64. this.glass = value;
  65. base.Invalidate();
  66. }
  67. }
  68. }
  69. [Category("Bar"), DefaultValue(typeof(BackStyle), "0"), Description("进度条的图像绘制模式")]
  70. public BackStyle BarBackStyle
  71. {
  72. get
  73. {
  74. return this.barBackStyle;
  75. }
  76. set
  77. {
  78. if (this.barBackStyle != value)
  79. {
  80. this.barBackStyle = value;
  81. base.Invalidate();
  82. }
  83. }
  84. }
  85. [Category("Bar"), DefaultValue(typeof(Size), "1,1"), Description("自减宽高。")]
  86. public Size BarMinusSize
  87. {
  88. get
  89. {
  90. return this.barMinusSize;
  91. }
  92. set
  93. {
  94. if (this.barMinusSize != value)
  95. {
  96. this.barMinusSize = value;
  97. base.Invalidate();
  98. }
  99. }
  100. }
  101. [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("是否显示进度百分比")]
  102. public bool TxtShow
  103. {
  104. get
  105. {
  106. return this.txtShow;
  107. }
  108. set
  109. {
  110. if (this.txtShow != value)
  111. {
  112. this.txtShow = value;
  113. base.Invalidate();
  114. }
  115. }
  116. }
  117. [Category("Skin"), DefaultValue(typeof(int), "2"), Description("控件圆角大小")]
  118. public int Radius
  119. {
  120. get
  121. {
  122. return this.radius;
  123. }
  124. set
  125. {
  126. if (this.radius != value)
  127. {
  128. this.radius = ((value < 1) ? 1 : value);
  129. this.SetRegion();
  130. base.Invalidate();
  131. }
  132. }
  133. }
  134. [Category("Skin"), DefaultValue(typeof(RoundStyle), "1"), Description("控件圆角样式")]
  135. public RoundStyle RadiusStyle
  136. {
  137. get
  138. {
  139. return this.radiusStyle;
  140. }
  141. set
  142. {
  143. if (this.radiusStyle != value)
  144. {
  145. this.radiusStyle = value;
  146. this.SetRegion();
  147. base.Invalidate();
  148. }
  149. }
  150. }
  151. [Category("Bar"), DefaultValue(typeof(int), "2"), Description("进度条圆角大小")]
  152. public int BarRadius
  153. {
  154. get
  155. {
  156. return this.barradius;
  157. }
  158. set
  159. {
  160. if (this.barradius != value)
  161. {
  162. this.barradius = ((value < 1) ? 1 : value);
  163. base.Invalidate();
  164. }
  165. }
  166. }
  167. [Category("Bar"), DefaultValue(typeof(RoundStyle), "1"), Description("进度条圆角样式")]
  168. public RoundStyle BarRadiusStyle
  169. {
  170. get
  171. {
  172. return this.barradiusStyle;
  173. }
  174. set
  175. {
  176. if (this.barradiusStyle != value)
  177. {
  178. this.barradiusStyle = value;
  179. base.Invalidate();
  180. }
  181. }
  182. }
  183. [Category("Skin"), Description("控件背景图片")]
  184. public Image Back
  185. {
  186. get
  187. {
  188. return this.back;
  189. }
  190. set
  191. {
  192. if (this.back != value)
  193. {
  194. this.back = value;
  195. base.Invalidate();
  196. }
  197. }
  198. }
  199. [Category("Bar"), Description("进度条图片")]
  200. public Image BarBack
  201. {
  202. get
  203. {
  204. return this.barBack;
  205. }
  206. set
  207. {
  208. if (this.barBack != value)
  209. {
  210. this.barBack = value;
  211. base.Invalidate();
  212. }
  213. }
  214. }
  215. [Category("Skin"), DefaultValue("{0:0.0%}")]
  216. public string FormatString
  217. {
  218. get
  219. {
  220. return this._formatString;
  221. }
  222. set
  223. {
  224. if (this._formatString != value)
  225. {
  226. this._formatString = value;
  227. base.Invalidate();
  228. }
  229. }
  230. }
  231. [Category("Skin"), DefaultValue(typeof(Color), "185, 185, 185")]
  232. public Color TrackBack
  233. {
  234. get
  235. {
  236. return this._trackBack;
  237. }
  238. set
  239. {
  240. if (this._trackBack != value)
  241. {
  242. this._trackBack = value;
  243. base.Invalidate();
  244. }
  245. }
  246. }
  247. [Category("Bar"), DefaultValue(typeof(Color), "15, 181, 43")]
  248. public Color TrackFore
  249. {
  250. get
  251. {
  252. return this._trackFore;
  253. }
  254. set
  255. {
  256. if (this._trackFore != value)
  257. {
  258. this._trackFore = value;
  259. base.Invalidate();
  260. }
  261. }
  262. }
  263. [Category("Skin"), DefaultValue(typeof(Color), "158, 158, 158")]
  264. public Color Border
  265. {
  266. get
  267. {
  268. return this._border;
  269. }
  270. set
  271. {
  272. if (this._border != value)
  273. {
  274. this._border = value;
  275. base.Invalidate();
  276. }
  277. }
  278. }
  279. [Category("Skin"), DefaultValue(typeof(Color), "200, 250, 250, 250")]
  280. public Color InnerBorder
  281. {
  282. get
  283. {
  284. return this._innerBorder;
  285. }
  286. set
  287. {
  288. if (this._innerBorder != value)
  289. {
  290. this._innerBorder = value;
  291. base.Invalidate();
  292. }
  293. }
  294. }
  295. public new ProgressBarStyle Style
  296. {
  297. get
  298. {
  299. return base.Style;
  300. }
  301. set
  302. {
  303. if (base.Style != value)
  304. {
  305. base.Style = value;
  306. if (value == ProgressBarStyle.Marquee)
  307. {
  308. if (this._timer != null)
  309. {
  310. this._timer.Dispose();
  311. }
  312. this._timer = new Timer();
  313. this._timer.Interval = 10;
  314. this._timer.Tick += delegate(object sender, EventArgs e)
  315. {
  316. this._trackX += (int)Math.Ceiling((double)((float)base.Width / (float)base.MarqueeAnimationSpeed));
  317. if (this._trackX > base.Width)
  318. {
  319. this._trackX = -100;
  320. }
  321. base.Invalidate();
  322. };
  323. if (!base.DesignMode)
  324. {
  325. this._timer.Start();
  326. return;
  327. }
  328. }
  329. else
  330. {
  331. if (this._timer != null)
  332. {
  333. this._timer.Dispose();
  334. this._timer = null;
  335. }
  336. }
  337. }
  338. }
  339. }
  340. [Browsable(true)]
  341. public override Font Font
  342. {
  343. get
  344. {
  345. return base.Font;
  346. }
  347. set
  348. {
  349. base.Font = value;
  350. }
  351. }
  352. public SkinProgressBar()
  353. {
  354. this._context = BufferedGraphicsManager.Current;
  355. this._context.MaximumBuffer = new Size(base.Width + 1, base.Height + 1);
  356. this._bufferedGraphics = this._context.Allocate(base.CreateGraphics(), new Rectangle(Point.Empty, base.Size));
  357. this.ForeColor = Color.Red;
  358. base.ResizeRedraw = true;
  359. }
  360. protected override void OnCreateControl()
  361. {
  362. base.OnCreateControl();
  363. this.SetRegion();
  364. }
  365. protected override void OnResize(EventArgs e)
  366. {
  367. base.OnResize(e);
  368. this.SetRegion();
  369. this._context.MaximumBuffer = new Size(base.Width + 1, base.Height + 1);
  370. if (this._bufferedGraphics != null)
  371. {
  372. this._bufferedGraphics.Dispose();
  373. this._bufferedGraphics = null;
  374. }
  375. try
  376. {
  377. this._bufferedGraphics = this._context.Allocate(base.CreateGraphics(), new Rectangle(Point.Empty, base.Size));
  378. }
  379. catch { }
  380. }
  381. protected override void WndProc(ref Message m)
  382. {
  383. try
  384. {
  385. int msg = m.Msg;
  386. if (msg != 15)
  387. {
  388. base.WndProc(ref m);
  389. return;
  390. }
  391. }
  392. catch {
  393. base.WndProc(ref m);
  394. return;
  395. }
  396. if (!this._bPainting)
  397. {
  398. this._bPainting = true;
  399. PAINTSTRUCT ps = default(PAINTSTRUCT);
  400. NativeMethods.BeginPaint(m.HWnd, ref ps);
  401. try
  402. {
  403. this.DrawProgressBar(m.HWnd);
  404. }
  405. catch
  406. {
  407. }
  408. NativeMethods.ValidateRect(m.HWnd, ref ps.rcPaint);
  409. NativeMethods.EndPaint(m.HWnd, ref ps);
  410. this._bPainting = false;
  411. m.Result = Result.TRUE;
  412. return;
  413. }
  414. base.WndProc(ref m);
  415. }
  416. protected override void Dispose(bool disposing)
  417. {
  418. base.Dispose(disposing);
  419. if (disposing)
  420. {
  421. if (this._timer != null)
  422. {
  423. this._timer.Dispose();
  424. this._timer = null;
  425. }
  426. if (this._bufferedGraphics != null)
  427. {
  428. this._bufferedGraphics.Dispose();
  429. this._bufferedGraphics = null;
  430. }
  431. if (this._context != null)
  432. {
  433. this._context = null;
  434. }
  435. }
  436. }
  437. private void DrawProgressBar(IntPtr hWnd)
  438. {
  439. Graphics g = this._bufferedGraphics.Graphics;
  440. g.Clear(Color.Transparent);
  441. Rectangle rect = new Rectangle(Point.Empty, base.Size);
  442. bool bBlock = this.Style != ProgressBarStyle.Marquee || base.DesignMode;
  443. float basePosition = bBlock ? 0.3f : 0.45f;
  444. SmoothingModeGraphics sg = new SmoothingModeGraphics(g);
  445. if (this.Back != null)
  446. {
  447. Bitmap btm = new Bitmap(this.Back, base.Size);
  448. UpdateForm.CreateControlRegion(this, btm, 200);
  449. g.DrawImage(this.Back, rect);
  450. }
  451. else
  452. {
  453. RenderHelper.RenderBackgroundInternal(g, rect, this.TrackBack, this.Border, this.InnerBorder, this.RadiusStyle, this.Radius, basePosition, true, this.Glass, LinearGradientMode.Vertical);
  454. }
  455. Rectangle trackRect = rect;
  456. trackRect.Inflate(-this.BarMinusSize.Width, -this.BarMinusSize.Height);
  457. if (bBlock)
  458. {
  459. trackRect.Width = (int)((double)base.Value / (double)(base.Maximum - base.Minimum) * (double)trackRect.Width);
  460. if (this.BarBack != null)
  461. {
  462. if (this.BarBackStyle == BackStyle.Tile)
  463. {
  464. using (TextureBrush Txbrus = new TextureBrush(this.BarBack))
  465. {
  466. Txbrus.WrapMode = WrapMode.Tile;
  467. g.FillRectangle(Txbrus, trackRect);
  468. goto IL_19B;
  469. }
  470. }
  471. Bitmap btm2 = new Bitmap(this.BarBack, base.Size);
  472. g.DrawImageUnscaledAndClipped(btm2, trackRect);
  473. }
  474. else
  475. {
  476. RenderHelper.RenderBackgroundInternal(g, trackRect, this.TrackFore, this.Border, this.InnerBorder, this.BarRadiusStyle, this.BarRadius, basePosition, false, this.BarGlass, LinearGradientMode.Vertical);
  477. }
  478. IL_19B:
  479. if (!string.IsNullOrEmpty(this._formatString) && this.TxtShow)
  480. {
  481. TextRenderer.DrawText(g, string.Format(this._formatString, (double)base.Value / (double)(base.Maximum - base.Minimum)), base.Font, rect, base.ForeColor, TextFormatFlags.HorizontalCenter | TextFormatFlags.SingleLine | TextFormatFlags.VerticalCenter | TextFormatFlags.WordEllipsis);
  482. }
  483. }
  484. else
  485. {
  486. GraphicsState state = g.Save();
  487. g.SetClip(trackRect);
  488. trackRect.X = this._trackX;
  489. trackRect.Width = 100;
  490. using (GraphicsPath path = new GraphicsPath())
  491. {
  492. path.AddEllipse(trackRect);
  493. g.SetClip(path, CombineMode.Intersect);
  494. }
  495. RenderHelper.RenderBackgroundInternal(g, trackRect, this.TrackFore, this.Border, this.InnerBorder, RoundStyle.None, 8, basePosition, false, this.BarGlass, LinearGradientMode.Vertical);
  496. using (LinearGradientBrush brush = new LinearGradientBrush(trackRect, this.InnerBorder, Color.Transparent, 0f))
  497. {
  498. Blend blend = new Blend();
  499. Blend arg_2A0_0 = blend;
  500. float[] array = new float[3];
  501. array[1] = 1f;
  502. arg_2A0_0.Factors = array;
  503. blend.Positions = new float[]
  504. {
  505. 0f,
  506. 0.5f,
  507. 1f
  508. };
  509. brush.Blend = blend;
  510. g.FillRectangle(brush, trackRect);
  511. }
  512. g.Restore(state);
  513. }
  514. sg.Dispose();
  515. IntPtr hDC = NativeMethods.GetDC(hWnd);
  516. this._bufferedGraphics.Render(hDC);
  517. NativeMethods.ReleaseDC(hWnd, hDC);
  518. }
  519. private void SetRegion()
  520. {
  521. RegionHelper.CreateRegion(this, new Rectangle(Point.Empty, base.Size), this.Radius, this.RadiusStyle);
  522. }
  523. }
  524. }