SkinCheckBox.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  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(CheckBox))]
  10. public class SkinCheckBox : CheckBox
  11. {
  12. private ControlState _controlState;
  13. private static readonly ContentAlignment RightAlignment = (ContentAlignment)1092;
  14. private static readonly ContentAlignment LeftAligbment = (ContentAlignment)273;
  15. private Color _baseColor = Color.FromArgb(51, 161, 224);
  16. private int defaultcheckbuttonwidth = 12;
  17. private Image mouseback;
  18. private Image downback;
  19. private Image normlback;
  20. private Image selectedmouseback;
  21. private Image selectedownback;
  22. private Image selectenormlback;
  23. private bool lighteffect = true;
  24. private Color lighteffectback = Color.White;
  25. private int lighteffectWidth = 4;
  26. private IContainer components;
  27. [Category("Skin"), DefaultValue(typeof(Color), "51, 161, 224"), Description("非图片绘制时CheckBox色调")]
  28. public Color BaseColor
  29. {
  30. get
  31. {
  32. return this._baseColor;
  33. }
  34. set
  35. {
  36. if (this._baseColor != value)
  37. {
  38. this._baseColor = value;
  39. base.Invalidate();
  40. }
  41. }
  42. }
  43. [Category("Skin"), DefaultValue(12), Description("选择框大小")]
  44. public int DefaultCheckButtonWidth
  45. {
  46. get
  47. {
  48. return this.defaultcheckbuttonwidth;
  49. }
  50. set
  51. {
  52. if (this.defaultcheckbuttonwidth != value)
  53. {
  54. this.defaultcheckbuttonwidth = value;
  55. base.Invalidate();
  56. }
  57. }
  58. }
  59. public ControlState ControlState
  60. {
  61. get
  62. {
  63. return this._controlState;
  64. }
  65. set
  66. {
  67. if (this._controlState != value)
  68. {
  69. this._controlState = value;
  70. base.Invalidate();
  71. }
  72. }
  73. }
  74. [Category("MouseEnter"), Description("悬浮时图像")]
  75. public Image MouseBack
  76. {
  77. get
  78. {
  79. return this.mouseback;
  80. }
  81. set
  82. {
  83. if (this.mouseback != value)
  84. {
  85. this.mouseback = value;
  86. base.Invalidate();
  87. }
  88. }
  89. }
  90. [Category("MouseDown"), Description("点击时图像")]
  91. public Image DownBack
  92. {
  93. get
  94. {
  95. return this.downback;
  96. }
  97. set
  98. {
  99. if (this.downback != value)
  100. {
  101. this.downback = value;
  102. base.Invalidate();
  103. }
  104. }
  105. }
  106. [Category("MouseNorml"), Description("初始时图像")]
  107. public Image NormlBack
  108. {
  109. get
  110. {
  111. return this.normlback;
  112. }
  113. set
  114. {
  115. if (this.normlback != value)
  116. {
  117. this.normlback = value;
  118. base.Invalidate();
  119. }
  120. }
  121. }
  122. [Category("MouseEnter"), Description("选中悬浮时图像")]
  123. public Image SelectedMouseBack
  124. {
  125. get
  126. {
  127. return this.selectedmouseback;
  128. }
  129. set
  130. {
  131. if (this.selectedmouseback != value)
  132. {
  133. this.selectedmouseback = value;
  134. base.Invalidate();
  135. }
  136. }
  137. }
  138. [Category("MouseDown"), Description("选中点击时图像")]
  139. public Image SelectedDownBack
  140. {
  141. get
  142. {
  143. return this.selectedownback;
  144. }
  145. set
  146. {
  147. if (this.selectedownback != value)
  148. {
  149. this.selectedownback = value;
  150. base.Invalidate();
  151. }
  152. }
  153. }
  154. [Category("MouseNorml"), Description("选中初始时图像")]
  155. public Image SelectedNormlBack
  156. {
  157. get
  158. {
  159. return this.selectenormlback;
  160. }
  161. set
  162. {
  163. if (this.selectenormlback != value)
  164. {
  165. this.selectenormlback = value;
  166. base.Invalidate();
  167. }
  168. }
  169. }
  170. [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("是否绘制发光字体")]
  171. public bool LightEffect
  172. {
  173. get
  174. {
  175. return this.lighteffect;
  176. }
  177. set
  178. {
  179. if (this.lighteffect != value)
  180. {
  181. this.lighteffect = value;
  182. base.Invalidate();
  183. }
  184. }
  185. }
  186. [Category("Skin"), DefaultValue(typeof(Color), "White"), Description("发光字体背景色")]
  187. public Color LightEffectBack
  188. {
  189. get
  190. {
  191. return this.lighteffectback;
  192. }
  193. set
  194. {
  195. if (this.lighteffectback != value)
  196. {
  197. this.lighteffectback = value;
  198. base.Invalidate();
  199. }
  200. }
  201. }
  202. [Category("Skin"), DefaultValue(typeof(int), "4"), Description("光圈大小")]
  203. public int LightEffectWidth
  204. {
  205. get
  206. {
  207. return this.lighteffectWidth;
  208. }
  209. set
  210. {
  211. if (this.lighteffectWidth != value)
  212. {
  213. this.lighteffectWidth = value;
  214. base.Invalidate();
  215. }
  216. }
  217. }
  218. public SkinCheckBox()
  219. {
  220. this.Init();
  221. base.ResizeRedraw = true;
  222. this.BackColor = Color.Transparent;
  223. this.Font = new Font("微软雅黑", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
  224. }
  225. public void Init()
  226. {
  227. base.SetStyle(ControlStyles.ResizeRedraw, true);
  228. base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  229. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  230. base.SetStyle(ControlStyles.UserPaint, true);
  231. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  232. base.UpdateStyles();
  233. }
  234. protected override void OnMouseEnter(EventArgs e)
  235. {
  236. this.ControlState = ControlState.Hover;
  237. base.Invalidate();
  238. base.OnMouseEnter(e);
  239. }
  240. protected override void OnMouseLeave(EventArgs e)
  241. {
  242. this.ControlState = ControlState.Normal;
  243. base.Invalidate();
  244. base.OnMouseLeave(e);
  245. }
  246. protected override void OnMouseDown(MouseEventArgs e)
  247. {
  248. if ((e.Button & MouseButtons.Left) != MouseButtons.Left)
  249. {
  250. return;
  251. }
  252. this.ControlState = ControlState.Pressed;
  253. base.Invalidate();
  254. base.OnMouseDown(e);
  255. }
  256. protected override void OnMouseUp(MouseEventArgs e)
  257. {
  258. if (e.Button == MouseButtons.Left && e.Clicks == 1)
  259. {
  260. if (base.ClientRectangle.Contains(e.Location))
  261. {
  262. this.ControlState = ControlState.Hover;
  263. }
  264. else
  265. {
  266. this.ControlState = ControlState.Normal;
  267. }
  268. }
  269. base.Invalidate();
  270. base.OnMouseUp(e);
  271. }
  272. protected override void OnEnter(EventArgs e)
  273. {
  274. this.ControlState = ControlState.Focused;
  275. base.OnEnter(e);
  276. }
  277. protected override void OnPaint(PaintEventArgs e)
  278. {
  279. base.OnPaint(e);
  280. base.OnPaintBackground(e);
  281. Graphics g = e.Graphics;
  282. Rectangle checkButtonRect;
  283. Rectangle textRect;
  284. this.CalculateRect(out checkButtonRect, out textRect);
  285. g.SmoothingMode = SmoothingMode.AntiAlias;
  286. ControlPaint.Light(this._baseColor);
  287. bool hover = false;
  288. Color borderColor;
  289. Color innerBorderColor;
  290. Color checkColor;
  291. Bitmap btm;
  292. if (base.Enabled)
  293. {
  294. switch (this.ControlState)
  295. {
  296. case ControlState.Hover:
  297. borderColor = this._baseColor;
  298. innerBorderColor = this._baseColor;
  299. checkColor = this.GetColor(this._baseColor, 0, 35, 24, 9);
  300. btm = (base.Checked ? ((Bitmap)this.SelectedMouseBack) : ((Bitmap)this.MouseBack));
  301. hover = true;
  302. break;
  303. case ControlState.Pressed:
  304. borderColor = this._baseColor;
  305. innerBorderColor = this.GetColor(this._baseColor, 0, -13, -8, -3);
  306. checkColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
  307. btm = (base.Checked ? ((Bitmap)this.SelectedDownBack) : ((Bitmap)this.DownBack));
  308. hover = true;
  309. break;
  310. default:
  311. borderColor = this._baseColor;
  312. innerBorderColor = Color.Empty;
  313. checkColor = this._baseColor;
  314. btm = (base.Checked ? ((Bitmap)this.SelectedNormlBack) : ((Bitmap)this.NormlBack));
  315. break;
  316. }
  317. }
  318. else
  319. {
  320. borderColor = SystemColors.ControlDark;
  321. innerBorderColor = SystemColors.ControlDark;
  322. checkColor = SystemColors.ControlDark;
  323. btm = (base.Checked ? ((Bitmap)this.SelectedNormlBack) : ((Bitmap)this.NormlBack));
  324. }
  325. if (btm == null)
  326. {
  327. using (SolidBrush brush = new SolidBrush(Color.White))
  328. {
  329. g.FillRectangle(brush, checkButtonRect);
  330. }
  331. if (hover)
  332. {
  333. using (Pen pen = new Pen(innerBorderColor, 2f))
  334. {
  335. g.DrawRectangle(pen, checkButtonRect);
  336. }
  337. }
  338. switch (base.CheckState)
  339. {
  340. case CheckState.Checked:
  341. this.DrawCheckedFlag(g, checkButtonRect, checkColor);
  342. break;
  343. case CheckState.Indeterminate:
  344. checkButtonRect.Inflate(-1, -1);
  345. using (GraphicsPath path = new GraphicsPath())
  346. {
  347. path.AddEllipse(checkButtonRect);
  348. using (PathGradientBrush brush2 = new PathGradientBrush(path))
  349. {
  350. brush2.CenterColor = checkColor;
  351. brush2.SurroundColors = new Color[]
  352. {
  353. Color.White
  354. };
  355. brush2.Blend = new Blend
  356. {
  357. Positions = new float[]
  358. {
  359. 0f,
  360. 0.4f,
  361. 1f
  362. },
  363. Factors = new float[]
  364. {
  365. 0f,
  366. 0.3f,
  367. 1f
  368. }
  369. };
  370. g.FillEllipse(brush2, checkButtonRect);
  371. }
  372. }
  373. checkButtonRect.Inflate(1, 1);
  374. break;
  375. }
  376. using (Pen pen2 = new Pen(borderColor))
  377. {
  378. g.DrawRectangle(pen2, checkButtonRect);
  379. goto IL_2EE;
  380. }
  381. }
  382. g.DrawImage(btm, checkButtonRect);
  383. IL_2EE:
  384. Color textColor = base.Enabled ? this.ForeColor : SystemColors.GrayText;
  385. if (this.LightEffect)
  386. {
  387. Image imgText = UpdateForm.ImageLightEffect(this.Text, this.Font, textColor, this.LightEffectBack, this.LightEffectWidth);
  388. g.DrawImage(imgText, textRect);
  389. return;
  390. }
  391. TextRenderer.DrawText(g, this.Text, this.Font, textRect, textColor, SkinCheckBox.GetTextFormatFlags(this.TextAlign, this.RightToLeft == RightToLeft.Yes));
  392. }
  393. private void DrawCheckedFlag(Graphics graphics, Rectangle rect, Color color)
  394. {
  395. PointF[] points = new PointF[]
  396. {
  397. new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
  398. new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
  399. new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
  400. };
  401. using (Pen pen = new Pen(color, 2f))
  402. {
  403. graphics.DrawLines(pen, points);
  404. }
  405. }
  406. public static TextFormatFlags GetTextFormatFlags(ContentAlignment alignment, bool rightToleft)
  407. {
  408. TextFormatFlags flags = TextFormatFlags.SingleLine | TextFormatFlags.WordBreak;
  409. if (rightToleft)
  410. {
  411. flags |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
  412. }
  413. if (alignment <= ContentAlignment.MiddleCenter)
  414. {
  415. switch (alignment)
  416. {
  417. case ContentAlignment.TopLeft:
  418. //flags = flags;
  419. break;
  420. case ContentAlignment.TopCenter:
  421. flags |= TextFormatFlags.HorizontalCenter;
  422. break;
  423. case (ContentAlignment)3:
  424. break;
  425. case ContentAlignment.TopRight:
  426. flags |= TextFormatFlags.Right;
  427. break;
  428. default:
  429. if (alignment != ContentAlignment.MiddleLeft)
  430. {
  431. if (alignment == ContentAlignment.MiddleCenter)
  432. {
  433. flags |= (TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter);
  434. }
  435. }
  436. else
  437. {
  438. flags |= TextFormatFlags.VerticalCenter;
  439. }
  440. break;
  441. }
  442. }
  443. else
  444. {
  445. if (alignment <= ContentAlignment.BottomLeft)
  446. {
  447. if (alignment != ContentAlignment.MiddleRight)
  448. {
  449. if (alignment == ContentAlignment.BottomLeft)
  450. {
  451. flags |= TextFormatFlags.Bottom;
  452. }
  453. }
  454. else
  455. {
  456. flags |= (TextFormatFlags.Right | TextFormatFlags.VerticalCenter);
  457. }
  458. }
  459. else
  460. {
  461. if (alignment != ContentAlignment.BottomCenter)
  462. {
  463. if (alignment == ContentAlignment.BottomRight)
  464. {
  465. flags |= (TextFormatFlags.Bottom | TextFormatFlags.Right);
  466. }
  467. }
  468. else
  469. {
  470. flags |= (TextFormatFlags.Bottom | TextFormatFlags.HorizontalCenter);
  471. }
  472. }
  473. }
  474. return flags;
  475. }
  476. private void CalculateRect(out Rectangle checkButtonRect, out Rectangle textRect)
  477. {
  478. checkButtonRect = new Rectangle(0, 0, this.DefaultCheckButtonWidth, this.DefaultCheckButtonWidth);
  479. textRect = Rectangle.Empty;
  480. bool bCheckAlignLeft = (SkinCheckBox.LeftAligbment & base.CheckAlign) != (ContentAlignment)0;
  481. bool bCheckAlignRight = (SkinCheckBox.RightAlignment & base.CheckAlign) != (ContentAlignment)0;
  482. bool bRightToLeft = this.RightToLeft == RightToLeft.Yes;
  483. if ((bCheckAlignLeft && !bRightToLeft) || (bCheckAlignRight && bRightToLeft))
  484. {
  485. ContentAlignment checkAlign = base.CheckAlign;
  486. if (checkAlign <= ContentAlignment.MiddleLeft)
  487. {
  488. if (checkAlign == ContentAlignment.TopLeft || checkAlign == ContentAlignment.TopRight)
  489. {
  490. checkButtonRect.Y = 2;
  491. goto IL_CD;
  492. }
  493. if (checkAlign != ContentAlignment.MiddleLeft)
  494. {
  495. goto IL_CD;
  496. }
  497. }
  498. else
  499. {
  500. if (checkAlign != ContentAlignment.MiddleRight)
  501. {
  502. if (checkAlign != ContentAlignment.BottomLeft && checkAlign != ContentAlignment.BottomRight)
  503. {
  504. goto IL_CD;
  505. }
  506. checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
  507. goto IL_CD;
  508. }
  509. }
  510. checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
  511. IL_CD:
  512. checkButtonRect.X = 1;
  513. textRect = new Rectangle(checkButtonRect.Right + 2, 0, base.Width - checkButtonRect.Right - 4, base.Height);
  514. return;
  515. }
  516. if ((bCheckAlignRight && !bRightToLeft) || (bCheckAlignLeft && bRightToLeft))
  517. {
  518. ContentAlignment checkAlign2 = base.CheckAlign;
  519. if (checkAlign2 <= ContentAlignment.MiddleLeft)
  520. {
  521. if (checkAlign2 == ContentAlignment.TopLeft || checkAlign2 == ContentAlignment.TopRight)
  522. {
  523. checkButtonRect.Y = 2;
  524. goto IL_17F;
  525. }
  526. if (checkAlign2 != ContentAlignment.MiddleLeft)
  527. {
  528. goto IL_17F;
  529. }
  530. }
  531. else
  532. {
  533. if (checkAlign2 != ContentAlignment.MiddleRight)
  534. {
  535. if (checkAlign2 != ContentAlignment.BottomLeft && checkAlign2 != ContentAlignment.BottomRight)
  536. {
  537. goto IL_17F;
  538. }
  539. checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
  540. goto IL_17F;
  541. }
  542. }
  543. checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
  544. IL_17F:
  545. checkButtonRect.X = base.Width - this.DefaultCheckButtonWidth - 1;
  546. textRect = new Rectangle(2, 0, base.Width - this.DefaultCheckButtonWidth - 6, base.Height);
  547. return;
  548. }
  549. ContentAlignment checkAlign3 = base.CheckAlign;
  550. if (checkAlign3 != ContentAlignment.TopCenter)
  551. {
  552. if (checkAlign3 != ContentAlignment.MiddleCenter)
  553. {
  554. if (checkAlign3 == ContentAlignment.BottomCenter)
  555. {
  556. checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
  557. textRect.Y = 0;
  558. textRect.Height = base.Height - this.DefaultCheckButtonWidth - 6;
  559. }
  560. }
  561. else
  562. {
  563. checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
  564. textRect.Y = 0;
  565. textRect.Height = base.Height;
  566. }
  567. }
  568. else
  569. {
  570. checkButtonRect.Y = 2;
  571. textRect.Y = checkButtonRect.Bottom + 2;
  572. textRect.Height = base.Height - this.DefaultCheckButtonWidth - 6;
  573. }
  574. checkButtonRect.X = (base.Width - this.DefaultCheckButtonWidth) / 2;
  575. textRect.X = 2;
  576. textRect.Width = base.Width - 4;
  577. }
  578. private Color GetColor(Color colorBase, int a, int r, int g, int b)
  579. {
  580. int a2 = (int)colorBase.A;
  581. int r2 = (int)colorBase.R;
  582. int g2 = (int)colorBase.G;
  583. int b2 = (int)colorBase.B;
  584. if (a + a2 > 255)
  585. {
  586. a = 255;
  587. }
  588. else
  589. {
  590. a = Math.Max(a + a2, 0);
  591. }
  592. if (r + r2 > 255)
  593. {
  594. r = 255;
  595. }
  596. else
  597. {
  598. r = Math.Max(r + r2, 0);
  599. }
  600. if (g + g2 > 255)
  601. {
  602. g = 255;
  603. }
  604. else
  605. {
  606. g = Math.Max(g + g2, 0);
  607. }
  608. if (b + b2 > 255)
  609. {
  610. b = 255;
  611. }
  612. else
  613. {
  614. b = Math.Max(b + b2, 0);
  615. }
  616. return Color.FromArgb(a, r, g, b);
  617. }
  618. protected override void Dispose(bool disposing)
  619. {
  620. if (disposing && this.components != null)
  621. {
  622. this.components.Dispose();
  623. }
  624. base.Dispose(disposing);
  625. }
  626. private void InitializeComponent()
  627. {
  628. this.components = new Container();
  629. }
  630. }
  631. }