TextBoxBasicEx.cs 13 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. using System.Runtime.InteropServices;
  10. namespace LYFZ.ComponentLibrary
  11. {
  12. public class TextBoxBasicEx : System.Windows.Forms.TextBox
  13. {
  14. public enum QQControlState
  15. {
  16. /// <summary>
  17. /// 正常状态
  18. /// </summary>
  19. Normal = 0,
  20. /// <summary>
  21. /// /鼠标进入
  22. /// </summary>
  23. Highlight = 1,
  24. /// <summary>
  25. /// 鼠标按下
  26. /// </summary>
  27. Down = 2,
  28. /// <summary>
  29. /// 获得焦点
  30. /// </summary>
  31. Focus = 3,
  32. /// <summary>
  33. /// 控件禁止
  34. /// </summary>
  35. Disabled = 4
  36. }
  37. internal class ColorTable
  38. {
  39. public static Color QQBorderColor = Color.LightBlue; //LightBlue = Color.FromArgb(173, 216, 230)
  40. public static Color QQHighLightColor = GetColor(QQBorderColor, 255, -63, -11, 23); //Color.FromArgb(110, 205, 253)
  41. public static Color QQHighLightInnerColor = GetColor(QQBorderColor, 255, -100, -44, 1); //Color.FromArgb(73, 172, 231);
  42. }
  43. /// <summary>
  44. /// 返回给定的颜色的ARGB的分量差值的颜色
  45. /// </summary>
  46. /// <param name="colorBase"></param>
  47. /// <param name="a">A</param>
  48. /// <param name="r">R</param>
  49. /// <param name="g">G</param>
  50. /// <param name="b">B</param>
  51. /// <returns></returns>
  52. public static Color GetColor(Color colorBase, int a, int r, int g, int b)
  53. {
  54. int a0 = colorBase.A;
  55. int r0 = colorBase.R;
  56. int g0 = colorBase.G;
  57. int b0 = colorBase.B;
  58. if (a + a0 > 255) { a = 255; } else { a = Math.Max(a + a0, 0); }
  59. if (r + r0 > 255) { r = 255; } else { r = Math.Max(r + r0, 0); }
  60. if (g + g0 > 255) { g = 255; } else { g = Math.Max(g + g0, 0); }
  61. if (b + b0 > 255) { b = 255; } else { b = Math.Max(b + b0, 0); }
  62. return Color.FromArgb(a, r, g, b);
  63. }
  64. #region Field
  65. private QQControlState _state = QQControlState.Normal;
  66. private Font _defaultFont = new Font("微软雅黑", 9);
  67. //当Text属性为空时编辑框内出现的提示文本
  68. private string _emptyTextTip;
  69. private Color _emptyTextTipColor = Color.DarkGray;
  70. #endregion
  71. #region Constructor
  72. public TextBoxBasicEx()
  73. {
  74. SetStyles();
  75. this.Font = _defaultFont;
  76. this.BorderStyle = BorderStyle.FixedSingle;
  77. }
  78. #endregion
  79. #region Properites
  80. [Description("当Text属性为空时编辑框内出现的提示文本")]
  81. public String EmptyTextTip
  82. {
  83. get { return _emptyTextTip; }
  84. set
  85. {
  86. if (_emptyTextTip != value)
  87. {
  88. _emptyTextTip = value;
  89. base.Invalidate();
  90. }
  91. }
  92. }
  93. [Description("获取或设置EmptyTextTip的颜色")]
  94. public Color EmptyTextTipColor
  95. {
  96. get { return _emptyTextTipColor; }
  97. set
  98. {
  99. if (_emptyTextTipColor != value)
  100. {
  101. _emptyTextTipColor = value;
  102. base.Invalidate();
  103. }
  104. }
  105. }
  106. #endregion
  107. #region Override
  108. protected override void OnMouseEnter(EventArgs e)
  109. {
  110. _state = QQControlState.Highlight;
  111. base.OnMouseEnter(e);
  112. }
  113. protected override void OnMouseLeave(EventArgs e)
  114. {
  115. if (_state == QQControlState.Highlight && Focused)
  116. {
  117. _state = QQControlState.Focus;
  118. }
  119. else if (_state == QQControlState.Focus)
  120. {
  121. _state = QQControlState.Focus;
  122. }
  123. else
  124. {
  125. _state = QQControlState.Normal;
  126. }
  127. base.OnMouseLeave(e);
  128. }
  129. protected override void OnMouseDown(MouseEventArgs mevent)
  130. {
  131. if (mevent.Button == MouseButtons.Left)
  132. {
  133. _state = QQControlState.Highlight;
  134. }
  135. base.OnMouseDown(mevent);
  136. }
  137. protected override void OnMouseUp(MouseEventArgs mevent)
  138. {
  139. if (mevent.Button == MouseButtons.Left)
  140. {
  141. if (ClientRectangle.Contains(mevent.Location))
  142. {
  143. _state = QQControlState.Highlight;
  144. }
  145. else
  146. {
  147. _state = QQControlState.Focus;
  148. }
  149. }
  150. base.OnMouseUp(mevent);
  151. }
  152. protected override void OnLostFocus(EventArgs e)
  153. {
  154. _state = QQControlState.Normal;
  155. base.OnLostFocus(e);
  156. }
  157. protected override void OnEnabledChanged(EventArgs e)
  158. {
  159. if (Enabled)
  160. {
  161. _state = QQControlState.Normal;
  162. }
  163. else
  164. {
  165. _state = QQControlState.Disabled;
  166. }
  167. base.OnEnabledChanged(e);
  168. }
  169. protected override void WndProc(ref Message m)
  170. {//TextBox是由系统进程绘制,重载OnPaint方法将不起作用
  171. base.WndProc(ref m);
  172. if (m.Msg == Win32.WM_PAINT || m.Msg == Win32.WM_CTLCOLOREDIT)
  173. {
  174. WmPaint(ref m);
  175. }
  176. }
  177. protected override void Dispose(bool disposing)
  178. {
  179. if (disposing)
  180. {
  181. if (_defaultFont != null)
  182. {
  183. _defaultFont.Dispose();
  184. }
  185. }
  186. _defaultFont = null;
  187. base.Dispose(disposing);
  188. }
  189. #endregion
  190. #region Private
  191. private void SetStyles()
  192. {
  193. // TextBox由系统绘制,不能设置 ControlStyles.UserPaint样式
  194. SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  195. SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  196. SetStyle(ControlStyles.ResizeRedraw, true);
  197. SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  198. UpdateStyles();
  199. }
  200. private void WmPaint(ref Message m)
  201. {
  202. Graphics g = Graphics.FromHwnd(base.Handle);
  203. g.SmoothingMode = SmoothingMode.AntiAlias;
  204. if (!Enabled)
  205. {
  206. _state = QQControlState.Disabled;
  207. }
  208. switch (_state)
  209. {
  210. case QQControlState.Normal:
  211. DrawNormalTextBox(g);
  212. break;
  213. case QQControlState.Highlight:
  214. DrawHighLightTextBox(g);
  215. break;
  216. case QQControlState.Focus:
  217. DrawFocusTextBox(g);
  218. break;
  219. case QQControlState.Disabled:
  220. DrawDisabledTextBox(g);
  221. break;
  222. default:
  223. break;
  224. }
  225. if (Text.Length == 0 && !string.IsNullOrEmpty(EmptyTextTip) && !Focused)
  226. {
  227. TextRenderer.DrawText(g, EmptyTextTip, Font, ClientRectangle, EmptyTextTipColor, GetTextFormatFlags(TextAlign, RightToLeft == RightToLeft.Yes));
  228. }
  229. }
  230. private void DrawNormalTextBox(Graphics g)
  231. {
  232. using (Pen borderPen = new Pen(Color.LightGray))
  233. {
  234. g.DrawRectangle(
  235. borderPen,
  236. new Rectangle(
  237. ClientRectangle.X,
  238. ClientRectangle.Y,
  239. ClientRectangle.Width - 1,
  240. ClientRectangle.Height - 1));
  241. }
  242. }
  243. private void DrawHighLightTextBox(Graphics g)
  244. {
  245. using (Pen highLightPen = new Pen(ColorTable.QQHighLightColor))
  246. {
  247. Rectangle drawRect = new Rectangle(
  248. ClientRectangle.X,
  249. ClientRectangle.Y,
  250. ClientRectangle.Width - 1,
  251. ClientRectangle.Height - 1);
  252. g.DrawRectangle(highLightPen, drawRect);
  253. //InnerRect
  254. drawRect.Inflate(-1, -1);
  255. highLightPen.Color = ColorTable.QQHighLightInnerColor;
  256. g.DrawRectangle(highLightPen, drawRect);
  257. }
  258. }
  259. private void DrawFocusTextBox(Graphics g)
  260. {
  261. using (Pen focusedBorderPen = new Pen(ColorTable.QQHighLightInnerColor))
  262. {
  263. g.DrawRectangle(
  264. focusedBorderPen,
  265. new Rectangle(
  266. ClientRectangle.X,
  267. ClientRectangle.Y,
  268. ClientRectangle.Width - 1,
  269. ClientRectangle.Height - 1));
  270. }
  271. }
  272. private void DrawDisabledTextBox(Graphics g)
  273. {
  274. using (Pen disabledPen = new Pen(SystemColors.ControlDark))
  275. {
  276. g.DrawRectangle(disabledPen,
  277. new Rectangle(
  278. ClientRectangle.X,
  279. ClientRectangle.Y,
  280. ClientRectangle.Width - 1,
  281. ClientRectangle.Height - 1));
  282. }
  283. }
  284. private static TextFormatFlags GetTextFormatFlags(HorizontalAlignment alignment, bool rightToleft)
  285. {
  286. TextFormatFlags flags = TextFormatFlags.WordBreak |
  287. TextFormatFlags.SingleLine;
  288. if (rightToleft)
  289. {
  290. flags |= TextFormatFlags.RightToLeft | TextFormatFlags.Right;
  291. }
  292. switch (alignment)
  293. {
  294. case HorizontalAlignment.Center:
  295. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter;
  296. break;
  297. case HorizontalAlignment.Left:
  298. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Left;
  299. break;
  300. case HorizontalAlignment.Right:
  301. flags |= TextFormatFlags.VerticalCenter | TextFormatFlags.Right;
  302. break;
  303. }
  304. return flags;
  305. }
  306. #endregion
  307. public class Win32
  308. {
  309. #region Window Const
  310. public const int WM_KEYDOWN = 0x0100;
  311. public const int WM_KEYUP = 0x0101;
  312. public const int WM_CTLCOLOREDIT = 0x133;
  313. public const int WM_ERASEBKGND = 0x0014;
  314. public const int WM_LBUTTONDOWN = 0x0201;
  315. public const int WM_LBUTTONUP = 0x0202;
  316. public const int WM_LBUTTONDBLCLK = 0x0203;
  317. public const int WM_WINDOWPOSCHANGING = 0x46;
  318. public const int WM_PAINT = 0xF;
  319. public const int WM_CREATE = 0x0001;
  320. public const int WM_ACTIVATE = 0x0006;
  321. public const int WM_NCCREATE = 0x0081;
  322. public const int WM_NCCALCSIZE = 0x0083;
  323. public const int WM_NCPAINT = 0x0085;
  324. public const int WM_NCACTIVATE = 0x0086;
  325. public const int WM_NCLBUTTONDOWN = 0x00A1;
  326. public const int WM_NCLBUTTONUP = 0x00A2;
  327. public const int WM_NCLBUTTONDBLCLK = 0x00A3;
  328. public const int WM_NCMOUSEMOVE = 0x00A0;
  329. public const int WM_NCHITTEST = 0x0084;
  330. public const int HTLEFT = 10;
  331. public const int HTRIGHT = 11;
  332. public const int HTTOP = 12;
  333. public const int HTTOPLEFT = 13;
  334. public const int HTTOPRIGHT = 14;
  335. public const int HTBOTTOM = 15;
  336. public const int HTBOTTOMLEFT = 0x10;
  337. public const int HTBOTTOMRIGHT = 17;
  338. public const int HTCAPTION = 2;
  339. public const int HTCLIENT = 1;
  340. public const int WM_FALSE = 0;
  341. public const int WM_TRUE = 1;
  342. #endregion
  343. #region Public extern methods
  344. [DllImport("gdi32.dll")]
  345. public static extern int CreateRoundRectRgn(int x1, int y1, int x2, int y2, int x3, int y3);
  346. [DllImport("user32.dll")]
  347. public static extern int SetWindowRgn(IntPtr hwnd, int hRgn, Boolean bRedraw);
  348. [DllImport("gdi32.dll", EntryPoint = "DeleteObject", CharSet = CharSet.Ansi)]
  349. public static extern int DeleteObject(int hObject);
  350. [DllImport("user32.dll")]
  351. public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
  352. [DllImport("user32.dll")]
  353. public static extern bool ReleaseCapture();
  354. #endregion
  355. }
  356. }
  357. }