SkinButtom.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Drawing.Drawing2D;
  6. using System.Windows.Forms;
  7. namespace LYFZ.OtherExpansion.SkinControl
  8. {
  9. [ToolboxBitmap(typeof(Button))]
  10. public class SkinButtom : Button
  11. {
  12. private DrawStyle drawType = DrawStyle.Draw;
  13. private Color _baseColor = Color.FromArgb(51, 161, 224);
  14. private int _imageWidth = 18;
  15. private RoundStyle _roundStyle;
  16. private ControlState _controlState;
  17. private bool palace;
  18. private bool create;
  19. private Rectangle backrectangle = new Rectangle(10, 10, 10, 10);
  20. private Image mouseback;
  21. private Image downback;
  22. private Image normlback;
  23. private int radius = 8;
  24. private ControlState states;
  25. private IContainer components;
  26. [Category("Skin"), DefaultValue(typeof(DrawStyle), "2"), Description("按钮的绘画模式")]
  27. public DrawStyle DrawType
  28. {
  29. get
  30. {
  31. return this.drawType;
  32. }
  33. set
  34. {
  35. if (this.drawType != value)
  36. {
  37. this.drawType = value;
  38. base.Invalidate();
  39. }
  40. }
  41. }
  42. [Category("Skin"), DefaultValue(typeof(Color), "51, 161, 224"), Description("非图片绘制时Bottom色调")]
  43. public Color BaseColor
  44. {
  45. get
  46. {
  47. return this._baseColor;
  48. }
  49. set
  50. {
  51. this._baseColor = value;
  52. base.Invalidate();
  53. }
  54. }
  55. [Category("Skin"), DefaultValue(18), Description("设置或获取图像的大小")]
  56. public int ImageWidth
  57. {
  58. get
  59. {
  60. return this._imageWidth;
  61. }
  62. set
  63. {
  64. if (value != this._imageWidth)
  65. {
  66. this._imageWidth = ((value < 12) ? 12 : value);
  67. base.Invalidate();
  68. }
  69. }
  70. }
  71. [Category("Skin"), DefaultValue(typeof(RoundStyle), "0"), Description("设置或获取按钮圆角的样式")]
  72. public RoundStyle RoundStyle
  73. {
  74. get
  75. {
  76. return this._roundStyle;
  77. }
  78. set
  79. {
  80. if (this._roundStyle != value)
  81. {
  82. this._roundStyle = value;
  83. base.Invalidate();
  84. }
  85. }
  86. }
  87. [Description("控件状态")]
  88. public ControlState ControlState
  89. {
  90. get
  91. {
  92. return this._controlState;
  93. }
  94. set
  95. {
  96. if (this._controlState != value)
  97. {
  98. this._controlState = value;
  99. base.Invalidate();
  100. }
  101. }
  102. }
  103. [Category("Skin"), DefaultValue(typeof(bool), "false"), Description("是否开启九宫绘图")]
  104. public bool Palace
  105. {
  106. get
  107. {
  108. return this.palace;
  109. }
  110. set
  111. {
  112. if (this.palace != value)
  113. {
  114. this.palace = value;
  115. base.Invalidate();
  116. }
  117. }
  118. }
  119. [Category("Skin"), DefaultValue(typeof(bool), "false"), Description("是否开启:根据所绘图限制控件范围")]
  120. public bool Create
  121. {
  122. get
  123. {
  124. return this.create;
  125. }
  126. set
  127. {
  128. if (this.create != value)
  129. {
  130. this.create = value;
  131. base.Invalidate();
  132. }
  133. }
  134. }
  135. [Category("Skin"), DefaultValue(typeof(Rectangle), "10,10,10,10"), Description("九宫绘画区域")]
  136. public Rectangle BackRectangle
  137. {
  138. get
  139. {
  140. return this.backrectangle;
  141. }
  142. set
  143. {
  144. if (this.backrectangle != value)
  145. {
  146. this.backrectangle = value;
  147. }
  148. base.Invalidate();
  149. }
  150. }
  151. [Category("MouseEnter"), Description("悬浮时背景")]
  152. public Image MouseBack
  153. {
  154. get
  155. {
  156. return this.mouseback;
  157. }
  158. set
  159. {
  160. if (this.mouseback != value)
  161. {
  162. this.mouseback = value;
  163. base.Invalidate();
  164. }
  165. }
  166. }
  167. [Category("MouseDown"), Description("点击时背景")]
  168. public Image DownBack
  169. {
  170. get
  171. {
  172. return this.downback;
  173. }
  174. set
  175. {
  176. if (this.downback != value)
  177. {
  178. this.downback = value;
  179. base.Invalidate();
  180. }
  181. }
  182. }
  183. [Category("MouseNorml"), Description("初始时背景")]
  184. public Image NormlBack
  185. {
  186. get
  187. {
  188. return this.normlback;
  189. }
  190. set
  191. {
  192. if (this.normlback != value)
  193. {
  194. this.normlback = value;
  195. base.Invalidate();
  196. }
  197. }
  198. }
  199. [Category("Skin"), DefaultValue(typeof(int), "8"), Description("圆角大小")]
  200. public int Radius
  201. {
  202. get
  203. {
  204. return this.radius;
  205. }
  206. set
  207. {
  208. if (this.radius != value)
  209. {
  210. this.radius = ((value < 4) ? 4 : value);
  211. base.Invalidate();
  212. }
  213. }
  214. }
  215. public SkinButtom()
  216. {
  217. this.Init();
  218. base.ResizeRedraw = true;
  219. this.BackColor = Color.Transparent;
  220. }
  221. public void Init()
  222. {
  223. base.SetStyle(ControlStyles.DoubleBuffer, true);
  224. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  225. base.SetStyle(ControlStyles.UserPaint, true);
  226. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  227. base.SetStyle(ControlStyles.StandardDoubleClick, false);
  228. base.SetStyle(ControlStyles.Selectable, true);
  229. base.UpdateStyles();
  230. }
  231. protected override void OnEnabledChanged(EventArgs e)
  232. {
  233. base.Invalidate();
  234. base.OnEnabledChanged(e);
  235. }
  236. protected override void OnMouseEnter(EventArgs e)
  237. {
  238. this._controlState = ControlState.Hover;
  239. base.Invalidate();
  240. base.OnMouseEnter(e);
  241. }
  242. protected override void OnMouseLeave(EventArgs e)
  243. {
  244. this._controlState = ControlState.Normal;
  245. base.Invalidate();
  246. base.OnMouseLeave(e);
  247. }
  248. protected override void OnMouseDown(MouseEventArgs e)
  249. {
  250. if ((e.Button & MouseButtons.Left) != MouseButtons.Left)
  251. {
  252. return;
  253. }
  254. this._controlState = ControlState.Pressed;
  255. base.Invalidate();
  256. base.OnMouseDown(e);
  257. }
  258. protected override void OnMouseUp(MouseEventArgs e)
  259. {
  260. if ((e.Button & MouseButtons.Left) == MouseButtons.Left)
  261. {
  262. this._controlState = ControlState.Hover;
  263. base.Invalidate();
  264. }
  265. base.OnMouseUp(e);
  266. }
  267. protected override void OnPaint(PaintEventArgs e)
  268. {
  269. base.OnPaint(e);
  270. base.OnPaintBackground(e);
  271. Graphics g = e.Graphics;
  272. Rectangle rc = base.ClientRectangle;
  273. Rectangle imageRect;
  274. Rectangle textRect;
  275. this.CalculateRect(out imageRect, out textRect);
  276. g.SmoothingMode = SmoothingMode.AntiAlias;
  277. Color innerBorderColor = Color.FromArgb(200, 255, 255, 255);
  278. int Tx = 0;
  279. Bitmap btm;
  280. Color baseColor;
  281. Color borderColor;
  282. switch (this._controlState)
  283. {
  284. case ControlState.Hover:
  285. btm = (Bitmap)this.MouseBack;
  286. baseColor = this.GetColor(this._baseColor, 0, -13, -8, -3);
  287. borderColor = this._baseColor;
  288. break;
  289. case ControlState.Pressed:
  290. btm = (Bitmap)this.DownBack;
  291. baseColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
  292. borderColor = this._baseColor;
  293. Tx = 1;
  294. break;
  295. default:
  296. btm = (Bitmap)this.NormlBack;
  297. baseColor = this._baseColor;
  298. borderColor = this._baseColor;
  299. break;
  300. }
  301. if (!base.Enabled)
  302. {
  303. baseColor = SystemColors.ControlDark;
  304. borderColor = SystemColors.ControlDark;
  305. }
  306. if (btm != null && this.DrawType == DrawStyle.Img)
  307. {
  308. UpdateForm.CreateRegion(this, rc, this.Radius, this.RoundStyle);
  309. if (this.Create && this._controlState != this.states)
  310. {
  311. UpdateForm.CreateControlRegion(this, btm, 1);
  312. }
  313. if (this.Palace)
  314. {
  315. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, btm, new Rectangle(rc.X, rc.Y, rc.Width, rc.Height), Rectangle.FromLTRB(this.BackRectangle.X, this.BackRectangle.Y, this.BackRectangle.Width, this.BackRectangle.Height), 1, 1);
  316. }
  317. else
  318. {
  319. g.DrawImage(btm, 0, 0, base.Width, base.Height);
  320. }
  321. }
  322. else
  323. {
  324. if (this.DrawType == DrawStyle.Draw)
  325. {
  326. this.RenderBackgroundInternal(g, rc, baseColor, borderColor, innerBorderColor, this.RoundStyle, this.Radius, 0.35f, true, true, LinearGradientMode.Vertical);
  327. }
  328. }
  329. Size imgs = Size.Empty;
  330. if (base.Image != null)
  331. {
  332. if (string.IsNullOrEmpty(this.Text))
  333. {
  334. Image img = base.Image;
  335. imgs = new Size(img.Width, img.Height);
  336. rc.Inflate(-4, -4);
  337. if (imgs.Width * imgs.Height != 0)
  338. {
  339. Rectangle imgr = rc;
  340. imgr = LYFZ.OtherExpansion.SkinClass.ImageDrawRect.HAlignWithin(imgs, imgr, base.ImageAlign);
  341. imgr = LYFZ.OtherExpansion.SkinClass.ImageDrawRect.VAlignWithin(imgs, imgr, base.ImageAlign);
  342. if (!base.Enabled)
  343. {
  344. ControlPaint.DrawImageDisabled(g, img, imgr.Left, imgr.Top, this.BackColor);
  345. }
  346. else
  347. {
  348. g.DrawImage(img, imgr.Left + Tx, imgr.Top + Tx, img.Width, img.Height);
  349. }
  350. }
  351. }
  352. else
  353. {
  354. g.InterpolationMode = InterpolationMode.HighQualityBilinear;
  355. g.DrawImage(base.Image, imageRect, -Tx, -Tx, base.Image.Width, base.Image.Height, GraphicsUnit.Pixel);
  356. }
  357. }
  358. else
  359. {
  360. if (base.ImageList != null && base.ImageIndex != -1)
  361. {
  362. Image img = base.ImageList.Images[base.ImageIndex];
  363. }
  364. }
  365. Color txtColor = base.Enabled ? this.ForeColor : SystemColors.ControlDark;
  366. TextRenderer.DrawText(g, this.Text, this.Font, textRect, txtColor, SkinButtom.GetTextFormatFlags(this.TextAlign, this.RightToLeft == RightToLeft.Yes));
  367. this.states = this._controlState;
  368. }
  369. private void CalculateRect(out Rectangle imageRect, out Rectangle textRect)
  370. {
  371. imageRect = Rectangle.Empty;
  372. textRect = Rectangle.Empty;
  373. if (base.Image == null)
  374. {
  375. textRect = new Rectangle(2, 0, base.Width - 4, base.Height);
  376. return;
  377. }
  378. switch (base.TextImageRelation)
  379. {
  380. case TextImageRelation.Overlay:
  381. imageRect = new Rectangle(2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
  382. textRect = new Rectangle(2, 0, base.Width - 4, base.Height);
  383. break;
  384. case TextImageRelation.ImageAboveText:
  385. imageRect = new Rectangle((base.Width - this.ImageWidth) / 2, 2, this.ImageWidth, this.ImageWidth);
  386. textRect = new Rectangle(2, imageRect.Bottom, base.Width, base.Height - imageRect.Bottom - 2);
  387. break;
  388. case TextImageRelation.TextAboveImage:
  389. imageRect = new Rectangle((base.Width - this.ImageWidth) / 2, base.Height - this.ImageWidth - 2, this.ImageWidth, this.ImageWidth);
  390. textRect = new Rectangle(0, 2, base.Width, base.Height - imageRect.Y - 2);
  391. break;
  392. case TextImageRelation.ImageBeforeText:
  393. imageRect = new Rectangle(2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
  394. textRect = new Rectangle(imageRect.Right + 2, 0, base.Width - imageRect.Right - 4, base.Height);
  395. break;
  396. case TextImageRelation.TextBeforeImage:
  397. imageRect = new Rectangle(base.Width - this.ImageWidth - 2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
  398. textRect = new Rectangle(2, 0, imageRect.X - 2, base.Height);
  399. break;
  400. }
  401. if (this.RightToLeft == RightToLeft.Yes)
  402. {
  403. imageRect.X = base.Width - imageRect.Right;
  404. textRect.X = base.Width - textRect.Right;
  405. }
  406. }
  407. public void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, float basePosition, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  408. {
  409. if (drawBorder)
  410. {
  411. rect.Width--;
  412. rect.Height--;
  413. }
  414. using (LinearGradientBrush brush = new LinearGradientBrush(rect, Color.Transparent, Color.Transparent, mode))
  415. {
  416. Color[] colors = new Color[]
  417. {
  418. this.GetColor(baseColor, 0, 35, 24, 9),
  419. this.GetColor(baseColor, 0, 13, 8, 3),
  420. baseColor,
  421. this.GetColor(baseColor, 0, 68, 69, 54)
  422. };
  423. brush.InterpolationColors = new ColorBlend
  424. {
  425. Positions = new float[]
  426. {
  427. 0f,
  428. basePosition,
  429. basePosition + 0.05f,
  430. 1f
  431. },
  432. Colors = colors
  433. };
  434. if (style != RoundStyle.None)
  435. {
  436. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  437. {
  438. g.FillPath(brush, path);
  439. }
  440. if (baseColor.A > 80)
  441. {
  442. Rectangle rectTop = rect;
  443. if (mode == LinearGradientMode.Vertical)
  444. {
  445. rectTop.Height = (int)((float)rectTop.Height * basePosition);
  446. }
  447. else
  448. {
  449. rectTop.Width = (int)((float)rect.Width * basePosition);
  450. }
  451. using (GraphicsPath pathTop = GraphicsPathHelper.CreatePath(rectTop, roundWidth, RoundStyle.Top, false))
  452. {
  453. using (SolidBrush brushAlpha = new SolidBrush(Color.FromArgb(80, 255, 255, 255)))
  454. {
  455. g.FillPath(brushAlpha, pathTop);
  456. }
  457. }
  458. }
  459. if (drawGlass)
  460. {
  461. RectangleF glassRect = rect;
  462. if (mode == LinearGradientMode.Vertical)
  463. {
  464. glassRect.Y = (float)rect.Y + (float)rect.Height * basePosition;
  465. glassRect.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  466. }
  467. else
  468. {
  469. glassRect.X = (float)rect.X + (float)rect.Width * basePosition;
  470. glassRect.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  471. }
  472. this.DrawGlass(g, glassRect, 170, 0);
  473. }
  474. if (!drawBorder)
  475. {
  476. goto IL_413;
  477. }
  478. using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  479. {
  480. using (Pen pen = new Pen(borderColor))
  481. {
  482. g.DrawPath(pen, path2);
  483. }
  484. }
  485. rect.Inflate(-1, -1);
  486. using (GraphicsPath path3 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  487. {
  488. using (Pen pen2 = new Pen(innerBorderColor))
  489. {
  490. g.DrawPath(pen2, path3);
  491. }
  492. goto IL_413;
  493. }
  494. }
  495. g.FillRectangle(brush, rect);
  496. if (baseColor.A > 80)
  497. {
  498. Rectangle rectTop2 = rect;
  499. if (mode == LinearGradientMode.Vertical)
  500. {
  501. rectTop2.Height = (int)((float)rectTop2.Height * basePosition);
  502. }
  503. else
  504. {
  505. rectTop2.Width = (int)((float)rect.Width * basePosition);
  506. }
  507. using (SolidBrush brushAlpha2 = new SolidBrush(Color.FromArgb(80, 255, 255, 255)))
  508. {
  509. g.FillRectangle(brushAlpha2, rectTop2);
  510. }
  511. }
  512. if (drawGlass)
  513. {
  514. RectangleF glassRect2 = rect;
  515. if (mode == LinearGradientMode.Vertical)
  516. {
  517. glassRect2.Y = (float)rect.Y + (float)rect.Height * basePosition;
  518. glassRect2.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  519. }
  520. else
  521. {
  522. glassRect2.X = (float)rect.X + (float)rect.Width * basePosition;
  523. glassRect2.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  524. }
  525. this.DrawGlass(g, glassRect2, 200, 0);
  526. }
  527. if (drawBorder)
  528. {
  529. using (Pen pen3 = new Pen(borderColor))
  530. {
  531. g.DrawRectangle(pen3, rect);
  532. }
  533. rect.Inflate(-1, -1);
  534. using (Pen pen4 = new Pen(innerBorderColor))
  535. {
  536. g.DrawRectangle(pen4, rect);
  537. }
  538. }
  539. IL_413:;
  540. }
  541. }
  542. private void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
  543. {
  544. this.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
  545. }
  546. private void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
  547. {
  548. using (GraphicsPath path = new GraphicsPath())
  549. {
  550. path.AddEllipse(glassRect);
  551. using (PathGradientBrush brush = new PathGradientBrush(path))
  552. {
  553. brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
  554. brush.SurroundColors = new Color[]
  555. {
  556. Color.FromArgb(alphaSurround, glassColor)
  557. };
  558. brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
  559. g.FillPath(brush, path);
  560. }
  561. }
  562. }
  563. private Color GetColor(Color colorBase, int a, int r, int g, int b)
  564. {
  565. int a2 = (int)colorBase.A;
  566. int r2 = (int)colorBase.R;
  567. int g2 = (int)colorBase.G;
  568. int b2 = (int)colorBase.B;
  569. if (a + a2 > 255)
  570. {
  571. a = 255;
  572. }
  573. else
  574. {
  575. a = Math.Max(a + a2, 0);
  576. }
  577. if (r + r2 > 255)
  578. {
  579. r = 255;
  580. }
  581. else
  582. {
  583. r = Math.Max(r + r2, 0);
  584. }
  585. if (g + g2 > 255)
  586. {
  587. g = 255;
  588. }
  589. else
  590. {
  591. g = Math.Max(g + g2, 0);
  592. }
  593. if (b + b2 > 255)
  594. {
  595. b = 255;
  596. }
  597. else
  598. {
  599. b = Math.Max(b + b2, 0);
  600. }
  601. return Color.FromArgb(a, r, g, b);
  602. }
  603. public static TextFormatFlags GetTextFormatFlags(ContentAlignment alignment, bool rightToleft)
  604. {
  605. TextFormatFlags flags = TextFormatFlags.SingleLine | TextFormatFlags.WordBreak;
  606. if (rightToleft)
  607. {
  608. flags |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
  609. }
  610. if (alignment <= ContentAlignment.MiddleCenter)
  611. {
  612. switch (alignment)
  613. {
  614. case ContentAlignment.TopLeft:
  615. //flags = flags;
  616. break;
  617. case ContentAlignment.TopCenter:
  618. flags |= TextFormatFlags.HorizontalCenter;
  619. break;
  620. case (ContentAlignment)3:
  621. break;
  622. case ContentAlignment.TopRight:
  623. flags |= TextFormatFlags.Right;
  624. break;
  625. default:
  626. if (alignment != ContentAlignment.MiddleLeft)
  627. {
  628. if (alignment == ContentAlignment.MiddleCenter)
  629. {
  630. flags |= (TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter);
  631. }
  632. }
  633. else
  634. {
  635. flags |= TextFormatFlags.VerticalCenter;
  636. }
  637. break;
  638. }
  639. }
  640. else
  641. {
  642. if (alignment <= ContentAlignment.BottomLeft)
  643. {
  644. if (alignment != ContentAlignment.MiddleRight)
  645. {
  646. if (alignment == ContentAlignment.BottomLeft)
  647. {
  648. flags |= TextFormatFlags.Bottom;
  649. }
  650. }
  651. else
  652. {
  653. flags |= (TextFormatFlags.Right | TextFormatFlags.VerticalCenter);
  654. }
  655. }
  656. else
  657. {
  658. if (alignment != ContentAlignment.BottomCenter)
  659. {
  660. if (alignment == ContentAlignment.BottomRight)
  661. {
  662. flags |= (TextFormatFlags.Bottom | TextFormatFlags.Right);
  663. }
  664. }
  665. else
  666. {
  667. flags |= (TextFormatFlags.Bottom | TextFormatFlags.HorizontalCenter);
  668. }
  669. }
  670. }
  671. return flags;
  672. }
  673. protected override void Dispose(bool disposing)
  674. {
  675. if (disposing && this.components != null)
  676. {
  677. this.components.Dispose();
  678. }
  679. base.Dispose(disposing);
  680. }
  681. private void InitializeComponent()
  682. {
  683. this.components = new Container();
  684. }
  685. }
  686. }