RadioButtonEx.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.IO;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.ComponentModel;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public class RadioButtonEx:System.Windows.Forms.RadioButton
  12. {
  13. public enum QQControlState
  14. {
  15. /// <summary>
  16. /// 正常状态
  17. /// </summary>
  18. Normal = 0,
  19. /// <summary>
  20. /// /鼠标进入
  21. /// </summary>
  22. Highlight = 1,
  23. /// <summary>
  24. /// 鼠标按下
  25. /// </summary>
  26. Down = 2,
  27. /// <summary>
  28. /// 获得焦点
  29. /// </summary>
  30. Focus = 3,
  31. /// <summary>
  32. /// 控件禁止
  33. /// </summary>
  34. Disabled = 4
  35. }
  36. /// <summary>
  37. /// 返回给定的颜色的ARGB的分量差值的颜色
  38. /// </summary>
  39. /// <param name="colorBase"></param>
  40. /// <param name="a">A</param>
  41. /// <param name="r">R</param>
  42. /// <param name="g">G</param>
  43. /// <param name="b">B</param>
  44. /// <returns></returns>
  45. public static Color GetColor(Color colorBase, int a, int r, int g, int b)
  46. {
  47. int a0 = colorBase.A;
  48. int r0 = colorBase.R;
  49. int g0 = colorBase.G;
  50. int b0 = colorBase.B;
  51. if (a + a0 > 255) { a = 255; } else { a = Math.Max(a + a0, 0); }
  52. if (r + r0 > 255) { r = 255; } else { r = Math.Max(r + r0, 0); }
  53. if (g + g0 > 255) { g = 255; } else { g = Math.Max(g + g0, 0); }
  54. if (b + b0 > 255) { b = 255; } else { b = Math.Max(b + b0, 0); }
  55. return Color.FromArgb(a, r, g, b);
  56. }
  57. internal class ColorTable
  58. {
  59. public static Color QQBorderColor = Color.LightBlue; //LightBlue = Color.FromArgb(173, 216, 230)
  60. public static Color QQHighLightColor = GetColor(QQBorderColor, 255, -63, -11, 23); //Color.FromArgb(110, 205, 253)
  61. public static Color QQHighLightInnerColor = GetColor(QQBorderColor, 255, -100, -44, 1); //Color.FromArgb(73, 172, 231);
  62. }
  63. #region Field
  64. private QQControlState _state = QQControlState.Normal;
  65. private Image _dotImg = new Bitmap(LYFZ.ComponentLibrary.Properties.Resources.dot);
  66. private Font _defaultFont = new Font("微软雅黑", 9);
  67. private static readonly ContentAlignment RightAlignment = ContentAlignment.TopRight | ContentAlignment.BottomRight | ContentAlignment.MiddleRight;
  68. private static readonly ContentAlignment LeftAlignment = ContentAlignment.TopLeft | ContentAlignment.BottomLeft | ContentAlignment.MiddleLeft;
  69. #endregion
  70. #region Constructor
  71. public RadioButtonEx()
  72. {
  73. SetStyles();
  74. this.BackColor = Color.Transparent;
  75. this.Font = _defaultFont;
  76. }
  77. #endregion
  78. #region Properites
  79. [Description("获取RadioButton左边正方形的宽度")]
  80. protected virtual int CheckRectWidth
  81. {
  82. get { return 12; }
  83. }
  84. #endregion
  85. #region Override
  86. protected override void OnMouseEnter(EventArgs e)
  87. {
  88. _state = QQControlState.Highlight;
  89. base.OnMouseEnter(e);
  90. }
  91. protected override void OnMouseLeave(EventArgs e)
  92. {
  93. _state = QQControlState.Normal;
  94. base.OnMouseLeave(e);
  95. }
  96. protected override void OnMouseDown(MouseEventArgs mevent)
  97. {
  98. if (mevent.Button == MouseButtons.Left)
  99. {
  100. _state = QQControlState.Down;
  101. }
  102. base.OnMouseDown(mevent);
  103. }
  104. protected override void OnMouseUp(MouseEventArgs mevent)
  105. {
  106. if (mevent.Button == MouseButtons.Left)
  107. {
  108. if (ClientRectangle.Contains(mevent.Location))
  109. {
  110. _state = QQControlState.Highlight;
  111. }
  112. else
  113. {
  114. _state = QQControlState.Normal;
  115. }
  116. }
  117. base.OnMouseUp(mevent);
  118. }
  119. protected override void OnEnabledChanged(EventArgs e)
  120. {
  121. if (Enabled)
  122. {
  123. _state = QQControlState.Normal;
  124. }
  125. else
  126. {
  127. _state = QQControlState.Disabled;
  128. }
  129. base.OnEnabledChanged(e);
  130. }
  131. protected override void OnPaint(PaintEventArgs pevent)
  132. {
  133. base.OnPaint(pevent);
  134. base.OnPaintBackground(pevent);
  135. Graphics g = pevent.Graphics;
  136. g.SmoothingMode = SmoothingMode.AntiAlias;
  137. g.InterpolationMode = InterpolationMode.HighQualityBicubic;
  138. Rectangle circleRect, textRect;
  139. CalculateRect(out circleRect, out textRect);
  140. if (Enabled == false)
  141. {
  142. _state = QQControlState.Disabled;
  143. }
  144. switch (_state)
  145. {
  146. case QQControlState.Highlight:
  147. case QQControlState.Down:
  148. DrawHighLightCircle(g, circleRect);
  149. break;
  150. case QQControlState.Disabled:
  151. DrawDisabledCircle(g, circleRect);
  152. break;
  153. default:
  154. DrawNormalCircle(g, circleRect);
  155. break;
  156. }
  157. Color textColor = (Enabled == true) ? ForeColor : SystemColors.GrayText;
  158. TextRenderer.DrawText(
  159. g,
  160. Text,
  161. Font,
  162. textRect,
  163. textColor,
  164. GetTextFormatFlags(TextAlign, RightToLeft == RightToLeft.Yes));
  165. }
  166. protected override void Dispose(bool disposing)
  167. {
  168. if (disposing)
  169. {
  170. if (_dotImg != null)
  171. {
  172. _dotImg.Dispose();
  173. }
  174. if (_defaultFont != null)
  175. {
  176. _defaultFont.Dispose();
  177. }
  178. }
  179. _dotImg = null;
  180. _defaultFont = null;
  181. base.Dispose(disposing);
  182. }
  183. #endregion
  184. #region Private
  185. private void DrawNormalCircle(Graphics g, Rectangle circleRect)
  186. {
  187. g.FillEllipse(Brushes.White, circleRect);
  188. using (Pen borderPen = new Pen(ColorTable.QQBorderColor))
  189. {
  190. g.DrawEllipse(borderPen, circleRect);
  191. }
  192. if (Checked)
  193. {
  194. circleRect.Inflate(-2, -2);
  195. g.DrawImage(
  196. _dotImg,
  197. new Rectangle(circleRect.X + 1, circleRect.Y + 1, circleRect.Width - 1, circleRect.Height - 1),
  198. 0,
  199. 0,
  200. _dotImg.Width,
  201. _dotImg.Height,
  202. GraphicsUnit.Pixel);
  203. }
  204. }
  205. private void DrawHighLightCircle(Graphics g, Rectangle circleRect)
  206. {
  207. DrawNormalCircle(g, circleRect);
  208. using (Pen p = new Pen(ColorTable.QQHighLightInnerColor))
  209. {
  210. g.DrawEllipse(p, circleRect);
  211. circleRect.Inflate(1, 1);
  212. p.Color = ColorTable.QQHighLightColor;
  213. g.DrawEllipse(p, circleRect);
  214. }
  215. }
  216. private void DrawDisabledCircle(Graphics g, Rectangle circleRect)
  217. {
  218. g.DrawEllipse(SystemPens.ControlDark, circleRect);
  219. if (Checked)
  220. {
  221. circleRect.Inflate(-2, -2);
  222. g.DrawImage(
  223. _dotImg,
  224. new Rectangle(circleRect.X + 1, circleRect.Y + 1, circleRect.Width - 1, circleRect.Height - 1),
  225. 0,
  226. 0,
  227. _dotImg.Width,
  228. _dotImg.Height,
  229. GraphicsUnit.Pixel);
  230. }
  231. }
  232. private void SetStyles()
  233. {
  234. SetStyle(ControlStyles.UserPaint, true);
  235. SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  236. SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  237. SetStyle(ControlStyles.ResizeRedraw, true);
  238. SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  239. UpdateStyles();
  240. }
  241. private void CalculateRect(out Rectangle circleRect, out Rectangle textRect)
  242. {
  243. circleRect = new Rectangle(
  244. 0, 0, CheckRectWidth, CheckRectWidth);
  245. textRect = Rectangle.Empty;
  246. bool bCheckAlignLeft = (int)(LeftAlignment & CheckAlign) != 0;
  247. bool bCheckAlignRight = (int)(RightAlignment & CheckAlign) != 0;
  248. bool bRightToLeft = (RightToLeft == RightToLeft.Yes);
  249. if ((bCheckAlignLeft && !bRightToLeft) ||
  250. (bCheckAlignRight && bRightToLeft))
  251. {
  252. switch (CheckAlign)
  253. {
  254. case ContentAlignment.TopRight:
  255. case ContentAlignment.TopLeft:
  256. circleRect.Y = 2;
  257. break;
  258. case ContentAlignment.MiddleRight:
  259. case ContentAlignment.MiddleLeft:
  260. circleRect.Y = (Height - CheckRectWidth) / 2;
  261. break;
  262. case ContentAlignment.BottomRight:
  263. case ContentAlignment.BottomLeft:
  264. circleRect.Y = Height - CheckRectWidth - 2;
  265. break;
  266. }
  267. circleRect.X = 1;
  268. textRect = new Rectangle(
  269. circleRect.Right + 2,
  270. 0,
  271. Width - circleRect.Right - 4,
  272. Height);
  273. }
  274. else if ((bCheckAlignRight && !bRightToLeft)
  275. || (bCheckAlignLeft && bRightToLeft))
  276. {
  277. switch (CheckAlign)
  278. {
  279. case ContentAlignment.TopLeft:
  280. case ContentAlignment.TopRight:
  281. circleRect.Y = 2;
  282. break;
  283. case ContentAlignment.MiddleLeft:
  284. case ContentAlignment.MiddleRight:
  285. circleRect.Y = (Height - CheckRectWidth) / 2;
  286. break;
  287. case ContentAlignment.BottomLeft:
  288. case ContentAlignment.BottomRight:
  289. circleRect.Y = Height - CheckRectWidth - 2;
  290. break;
  291. }
  292. circleRect.X = Width - CheckRectWidth - 1;
  293. textRect = new Rectangle(
  294. 2, 0, Width - CheckRectWidth - 6, Height);
  295. }
  296. else
  297. {
  298. switch (CheckAlign)
  299. {
  300. case ContentAlignment.TopCenter:
  301. circleRect.Y = 2;
  302. textRect.Y = circleRect.Bottom + 2;
  303. textRect.Height = Height - CheckRectWidth - 6;
  304. break;
  305. case ContentAlignment.MiddleCenter:
  306. circleRect.Y = (Height - CheckRectWidth) / 2;
  307. textRect.Y = 0;
  308. textRect.Height = Height;
  309. break;
  310. case ContentAlignment.BottomCenter:
  311. circleRect.Y = Height - CheckRectWidth - 2;
  312. textRect.Y = 0;
  313. textRect.Height = Height - CheckRectWidth - 6;
  314. break;
  315. }
  316. circleRect.X = (Width - CheckRectWidth) / 2;
  317. textRect.X = 2;
  318. textRect.Width = Width - 4;
  319. }
  320. }
  321. private static TextFormatFlags GetTextFormatFlags(ContentAlignment alignment, bool rightToleft)
  322. {
  323. TextFormatFlags flags = TextFormatFlags.WordBreak |
  324. TextFormatFlags.SingleLine;
  325. if (rightToleft)
  326. {
  327. flags |= TextFormatFlags.RightToLeft | TextFormatFlags.Right;
  328. }
  329. switch (alignment)
  330. {
  331. case ContentAlignment.BottomCenter:
  332. flags |= TextFormatFlags.Bottom | TextFormatFlags.HorizontalCenter;
  333. break;
  334. case ContentAlignment.BottomLeft:
  335. flags |= TextFormatFlags.Bottom | TextFormatFlags.Left;
  336. break;
  337. case ContentAlignment.BottomRight:
  338. flags |= TextFormatFlags.Bottom | TextFormatFlags.Right;
  339. break;
  340. case ContentAlignment.MiddleCenter:
  341. flags |= TextFormatFlags.HorizontalCenter |
  342. TextFormatFlags.VerticalCenter;
  343. break;
  344. case ContentAlignment.MiddleLeft:
  345. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Left;
  346. break;
  347. case ContentAlignment.MiddleRight:
  348. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Right;
  349. break;
  350. case ContentAlignment.TopCenter:
  351. flags |= TextFormatFlags.Top | TextFormatFlags.HorizontalCenter;
  352. break;
  353. case ContentAlignment.TopLeft:
  354. flags |= TextFormatFlags.Top | TextFormatFlags.Left;
  355. break;
  356. case ContentAlignment.TopRight:
  357. flags |= TextFormatFlags.Top | TextFormatFlags.Right;
  358. break;
  359. }
  360. return flags;
  361. }
  362. #endregion
  363. }
  364. }