SkinRadioButton.cs 14 KB

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