CheckBoxEx.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  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 CheckBoxEx:System.Windows.Forms.CheckBox
  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. internal class ColorTable
  37. {
  38. public static Color QQBorderColor = Color.LightBlue; //LightBlue = Color.FromArgb(173, 216, 230)
  39. public static Color QQHighLightColor = GetColor(QQBorderColor, 255, -63, -11, 23); //Color.FromArgb(110, 205, 253)
  40. public static Color QQHighLightInnerColor = GetColor(QQBorderColor, 255, -100, -44, 1); //Color.FromArgb(73, 172, 231);
  41. }
  42. /// <summary>
  43. /// 返回给定的颜色的ARGB的分量差值的颜色
  44. /// </summary>
  45. /// <param name="colorBase"></param>
  46. /// <param name="a">A</param>
  47. /// <param name="r">R</param>
  48. /// <param name="g">G</param>
  49. /// <param name="b">B</param>
  50. /// <returns></returns>
  51. public static Color GetColor(Color colorBase, int a, int r, int g, int b)
  52. {
  53. int a0 = colorBase.A;
  54. int r0 = colorBase.R;
  55. int g0 = colorBase.G;
  56. int b0 = colorBase.B;
  57. if (a + a0 > 255) { a = 255; } else { a = Math.Max(a + a0, 0); }
  58. if (r + r0 > 255) { r = 255; } else { r = Math.Max(r + r0, 0); }
  59. if (g + g0 > 255) { g = 255; } else { g = Math.Max(g + g0, 0); }
  60. if (b + b0 > 255) { b = 255; } else { b = Math.Max(b + b0, 0); }
  61. return Color.FromArgb(a, r, g, b);
  62. }
  63. #region Field
  64. private QQControlState _state = QQControlState.Normal;
  65. private Image _checkImg = new Bitmap(LYFZ.ComponentLibrary.Properties.Resources.check);
  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 CheckBoxEx()
  72. {
  73. SetStyles();
  74. this.BackColor = Color.Transparent;
  75. this.Font = _defaultFont;
  76. }
  77. #endregion
  78. #region Properites
  79. [Description("获取CheckBox左边正方形的宽度")]
  80. protected virtual int CheckRectWidth
  81. {
  82. get { return 13; }
  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 checkRect, textRect;
  139. CalculateRect(out checkRect, 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. DrawHighLightCheckRect(g, checkRect);
  149. break;
  150. case QQControlState.Disabled:
  151. DrawDisabledCheckRect(g, checkRect);
  152. break;
  153. default:
  154. DrawNormalCheckRect(g, checkRect);
  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 (_checkImg != null)
  171. {
  172. _checkImg.Dispose();
  173. }
  174. if (_defaultFont != null)
  175. {
  176. _defaultFont.Dispose();
  177. }
  178. }
  179. _checkImg = null;
  180. _defaultFont = null;
  181. base.Dispose(disposing);
  182. }
  183. #endregion
  184. #region Private
  185. private void DrawNormalCheckRect(Graphics g, Rectangle checkRect)
  186. {
  187. g.FillRectangle(Brushes.White, checkRect);
  188. using (Pen borderPen = new Pen(ColorTable.QQBorderColor))
  189. {
  190. g.DrawRectangle(borderPen, checkRect);
  191. }
  192. if (Checked)
  193. {
  194. g.DrawImage(_checkImg,checkRect, 0,0,_checkImg.Width, _checkImg.Height,GraphicsUnit.Pixel);
  195. }
  196. }
  197. private void DrawHighLightCheckRect(Graphics g, Rectangle checkRect)
  198. {
  199. DrawNormalCheckRect(g, checkRect);
  200. using (Pen p = new Pen(ColorTable.QQHighLightInnerColor))
  201. {
  202. g.DrawRectangle(p, checkRect);
  203. checkRect.Inflate(1, 1);
  204. p.Color = ColorTable.QQHighLightColor;
  205. g.DrawRectangle(p, checkRect);
  206. }
  207. }
  208. private void DrawDisabledCheckRect(Graphics g, Rectangle checkRect)
  209. {
  210. g.DrawRectangle(SystemPens.ControlDark, checkRect);
  211. if (Checked)
  212. {
  213. g.DrawImage(_checkImg,checkRect,0,0, _checkImg.Width,_checkImg.Height,GraphicsUnit.Pixel);
  214. }
  215. }
  216. private void SetStyles()
  217. {
  218. SetStyle(ControlStyles.UserPaint, true);
  219. SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  220. SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  221. SetStyle(ControlStyles.ResizeRedraw, true);
  222. SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  223. UpdateStyles();
  224. }
  225. private void CalculateRect(out Rectangle checkRect, out Rectangle textRect)
  226. {
  227. checkRect = new Rectangle(
  228. 0, 0, CheckRectWidth, CheckRectWidth);
  229. textRect = Rectangle.Empty;
  230. bool bCheckAlignLeft = (int)(LeftAlignment & CheckAlign) != 0;
  231. bool bCheckAlignRight = (int)(RightAlignment & CheckAlign) != 0;
  232. bool bRightToLeft = (RightToLeft == RightToLeft.Yes);
  233. if ((bCheckAlignLeft && !bRightToLeft) ||
  234. (bCheckAlignRight && bRightToLeft))
  235. {
  236. switch (CheckAlign)
  237. {
  238. case ContentAlignment.TopRight:
  239. case ContentAlignment.TopLeft:
  240. checkRect.Y = 2;
  241. break;
  242. case ContentAlignment.MiddleRight:
  243. case ContentAlignment.MiddleLeft:
  244. checkRect.Y = (Height - CheckRectWidth) / 2;
  245. break;
  246. case ContentAlignment.BottomRight:
  247. case ContentAlignment.BottomLeft:
  248. checkRect.Y = Height - CheckRectWidth - 2;
  249. break;
  250. }
  251. checkRect.X = 1;
  252. textRect = new Rectangle(
  253. checkRect.Right + 2,
  254. 0,
  255. Width - checkRect.Right - 4,
  256. Height);
  257. }
  258. else if ((bCheckAlignRight && !bRightToLeft)
  259. || (bCheckAlignLeft && bRightToLeft))
  260. {
  261. switch (CheckAlign)
  262. {
  263. case ContentAlignment.TopLeft:
  264. case ContentAlignment.TopRight:
  265. checkRect.Y = 2;
  266. break;
  267. case ContentAlignment.MiddleLeft:
  268. case ContentAlignment.MiddleRight:
  269. checkRect.Y = (Height - CheckRectWidth) / 2;
  270. break;
  271. case ContentAlignment.BottomLeft:
  272. case ContentAlignment.BottomRight:
  273. checkRect.Y = Height - CheckRectWidth - 2;
  274. break;
  275. }
  276. checkRect.X = Width - CheckRectWidth - 1;
  277. textRect = new Rectangle(
  278. 2, 0, Width - CheckRectWidth - 6, Height);
  279. }
  280. else
  281. {
  282. switch (CheckAlign)
  283. {
  284. case ContentAlignment.TopCenter:
  285. checkRect.Y = 2;
  286. textRect.Y = checkRect.Bottom + 2;
  287. textRect.Height = Height - CheckRectWidth - 6;
  288. break;
  289. case ContentAlignment.MiddleCenter:
  290. checkRect.Y = (Height - CheckRectWidth) / 2;
  291. textRect.Y = 0;
  292. textRect.Height = Height;
  293. break;
  294. case ContentAlignment.BottomCenter:
  295. checkRect.Y = Height - CheckRectWidth - 2;
  296. textRect.Y = 0;
  297. textRect.Height = Height - CheckRectWidth - 6;
  298. break;
  299. }
  300. checkRect.X = (Width - CheckRectWidth) / 2;
  301. textRect.X = 2;
  302. textRect.Width = Width - 4;
  303. }
  304. }
  305. private static TextFormatFlags GetTextFormatFlags(ContentAlignment alignment, bool rightToleft)
  306. {
  307. TextFormatFlags flags = TextFormatFlags.WordBreak |
  308. TextFormatFlags.SingleLine;
  309. if (rightToleft)
  310. {
  311. flags |= TextFormatFlags.RightToLeft | TextFormatFlags.Right;
  312. }
  313. switch (alignment)
  314. {
  315. case ContentAlignment.BottomCenter:
  316. flags |= TextFormatFlags.Bottom | TextFormatFlags.HorizontalCenter;
  317. break;
  318. case ContentAlignment.BottomLeft:
  319. flags |= TextFormatFlags.Bottom | TextFormatFlags.Left;
  320. break;
  321. case ContentAlignment.BottomRight:
  322. flags |= TextFormatFlags.Bottom | TextFormatFlags.Right;
  323. break;
  324. case ContentAlignment.MiddleCenter:
  325. flags |= TextFormatFlags.HorizontalCenter |
  326. TextFormatFlags.VerticalCenter;
  327. break;
  328. case ContentAlignment.MiddleLeft:
  329. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Left;
  330. break;
  331. case ContentAlignment.MiddleRight:
  332. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Right;
  333. break;
  334. case ContentAlignment.TopCenter:
  335. flags |= TextFormatFlags.Top | TextFormatFlags.HorizontalCenter;
  336. break;
  337. case ContentAlignment.TopLeft:
  338. flags |= TextFormatFlags.Top | TextFormatFlags.Left;
  339. break;
  340. case ContentAlignment.TopRight:
  341. flags |= TextFormatFlags.Top | TextFormatFlags.Right;
  342. break;
  343. }
  344. return flags;
  345. }
  346. #endregion
  347. }
  348. }