TextBoxEx.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Runtime.InteropServices;
  10. namespace LYFZ.ComponentLibrary
  11. {
  12. public partial class TextBoxEx : UserControl
  13. {
  14. #region 声明
  15. private Bitmap _TextBoxBackImg = LYFZ.ComponentLibrary.Properties.Resources.Textbox_bule;
  16. private State state = State.Default;
  17. private bool _Isico = false;
  18. private Bitmap _Ico;
  19. private Padding _IcoPadding = new Padding(3, 3, 0, 0);
  20. //枚鼠标状态
  21. private enum State
  22. {
  23. Normal = 1,
  24. MouseOver = 2,
  25. MouseDown = 3,
  26. Disable = 4,
  27. Default = 5
  28. }
  29. #endregion
  30. public TextBoxEx()
  31. {
  32. InitializeComponent();
  33. this.SetStyle(ControlStyles.UserPaint, true);
  34. this.SetStyle(ControlStyles.DoubleBuffer, true);
  35. this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  36. this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  37. this.SetStyle(ControlStyles.StandardDoubleClick, false);
  38. this.SetStyle(ControlStyles.Selectable, true);
  39. this.BackColor = Color.Transparent;
  40. SetStyle(ControlStyles.DoubleBuffer, true);
  41. SetStyle(ControlStyles.AllPaintingInWmPaint, false);
  42. SetStyle(ControlStyles.ResizeRedraw, true);
  43. SetStyle(ControlStyles.UserPaint, true);
  44. SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  45. this.Paint += new PaintEventHandler(TextBoxEx_Paint);
  46. }
  47. void BaseText_SizeChanged(object sender, EventArgs e)
  48. {
  49. setTextBoxExSize();
  50. }
  51. /// <summary>
  52. /// 设置大小
  53. /// </summary>
  54. void setTextBoxExSize()
  55. {
  56. if (BaseText.Multiline)
  57. {
  58. BaseText.Height = this.Height - 6;
  59. this.BaseText.Width = this.Width - 6;
  60. }
  61. else
  62. {
  63. this.Height = BaseText.Height + 6;
  64. this.BaseText.Width = this.Width - 6;
  65. }
  66. }
  67. #region 属性
  68. [Category("控件扩展属性"), Description("输入最大字符数")]
  69. public int MaxLength
  70. {
  71. get { return BaseText.MaxLength; }
  72. set { BaseText.MaxLength = value; Invalidate(false); }
  73. }
  74. [Browsable(true),Category("控件扩展属性"), Description("与控件关联的文本"),DefaultValue("")]
  75. public override string Text
  76. {
  77. get
  78. {
  79. return BaseText.Text;
  80. }
  81. set
  82. {
  83. BaseText.Text = value; Invalidate(false);
  84. }
  85. }
  86. [Category("控件扩展属性"), Description("将控件设为密码显示")]
  87. public bool IsPass
  88. {
  89. get
  90. {
  91. return BaseText.UseSystemPasswordChar;
  92. }
  93. set
  94. {
  95. BaseText.UseSystemPasswordChar = value; Invalidate(false);
  96. }
  97. }
  98. [Category("控件扩展属性"), Description("密码显示字符")]
  99. public char PassChar
  100. {
  101. get
  102. {
  103. return BaseText.PasswordChar;
  104. }
  105. set
  106. {
  107. BaseText.PasswordChar = value; Invalidate(false);
  108. }
  109. }
  110. [Category("控件扩展属性"), Description("将控件设为多行文本显示")]
  111. public bool Multiline
  112. {
  113. get
  114. {
  115. return BaseText.Multiline;
  116. }
  117. set
  118. {
  119. BaseText.Multiline = value;
  120. if (value)
  121. {
  122. BaseText.Height = this.Height - 6;
  123. }
  124. else
  125. {
  126. base.Height = 22;
  127. BaseText.Height = 16;
  128. this.Invalidate();
  129. }
  130. }
  131. }
  132. [Category("控件扩展属性"), Description("设置控件中文本字体")]
  133. [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
  134. public override Font Font
  135. {
  136. get
  137. {
  138. return BaseText.Font;
  139. }
  140. set
  141. {
  142. BaseText.Font = value;
  143. Invalidate();
  144. }
  145. }
  146. [Category("控件扩展属性"), Description("将控件设为只读")]
  147. public bool ReadOnly
  148. {
  149. get
  150. {
  151. return BaseText.ReadOnly;
  152. }
  153. set
  154. {
  155. BaseText.ReadOnly = value; Invalidate(false);
  156. }
  157. }
  158. [Category("控件扩展属性"), Description("多行文本的编辑行")]
  159. public String[] lines
  160. {
  161. get
  162. {
  163. return BaseText.Lines;
  164. }
  165. set
  166. {
  167. BaseText.Lines = value; Invalidate(false);
  168. }
  169. }
  170. [Category("控件扩展属性"), Description("是否显示图标")]
  171. public bool Isico
  172. {
  173. get
  174. {
  175. return _Isico;
  176. }
  177. set
  178. {
  179. _Isico = value;
  180. if (value)
  181. {
  182. if (_Ico != null)
  183. {
  184. BaseText.Location = new Point(_IcoPadding.Left + _Ico.Width, 3);
  185. BaseText.Width = BaseText.Width - _IcoPadding.Left - _Ico.Width;
  186. }
  187. else
  188. {
  189. BaseText.Location = new Point(25, 3);
  190. BaseText.Width = BaseText.Width - 25;
  191. }
  192. }
  193. this.Invalidate();
  194. }
  195. }
  196. [Category("控件扩展属性"), Description("图标文件")]
  197. public Bitmap Ico
  198. {
  199. get
  200. {
  201. return _Ico;
  202. }
  203. set
  204. {
  205. _Ico = value; Invalidate(false);
  206. }
  207. }
  208. [Category("控件扩展属性"), Description("控件内部间距,图标文件")]
  209. public Padding IcoPadding
  210. {
  211. get { return _IcoPadding; }
  212. set
  213. {
  214. _IcoPadding = value;
  215. this.Invalidate();
  216. }
  217. }
  218. [Category("控件扩展属性"), Description("滚动条显示设置"), DefaultValue(typeof(ScrollBars), "None")]
  219. public ScrollBars ScrollBars
  220. {
  221. get { return BaseText.ScrollBars; }
  222. set { BaseText.ScrollBars = value; Invalidate(false); }
  223. }
  224. public new bool Enabled {
  225. get { return base.Enabled; }
  226. set { base.Enabled = value;
  227. if (!base.Enabled)
  228. {
  229. state = State.Disable;
  230. }
  231. else {
  232. state = State.Default;
  233. }
  234. Invalidate(false);
  235. }
  236. }
  237. #region 文本框边框颜色
  238. [DllImport("user32.dll")]
  239. private static extern IntPtr GetWindowDC(IntPtr hwnd);
  240. [DllImport("user32.dll")]
  241. private static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc);
  242. private Color _borderColor = Color.Black;
  243. private int _borderWidth = 1;
  244. //
  245. // 摘要:
  246. // 获取或设置控件的边框颜色。
  247. //
  248. // 返回结果:
  249. // 控件的边框颜色 System.Drawing.Color。默认为 System.Drawing.Color.Black
  250. // 属性的值。
  251. [Description("组件的边框颜色。"), Category("Appearance")]
  252. public Color BorderColor
  253. {
  254. get
  255. {
  256. return _borderColor;
  257. }
  258. set
  259. {
  260. _borderColor = value;
  261. this.Invalidate();
  262. }
  263. }
  264. //
  265. // 摘要:
  266. // 获取或设置控件的边框宽度。
  267. //
  268. // 返回结果:
  269. // 控件的边框宽度 int。默认为 1
  270. // 属性的值。
  271. [Description("组件的边框宽度。"), Category("Appearance")]
  272. public int BorderWidth
  273. {
  274. get
  275. {
  276. return _borderWidth;
  277. }
  278. set
  279. {
  280. _borderWidth = value;
  281. this.Invalidate();
  282. }
  283. }
  284. private void TextBoxEx_Paint(object sender, PaintEventArgs e)
  285. {
  286. if (this.BorderStyle == BorderStyle.FixedSingle)
  287. {
  288. IntPtr hDC = GetWindowDC(this.Handle);
  289. Graphics g = Graphics.FromHdc(hDC);
  290. ControlPaint.DrawBorder(
  291. g,
  292. new Rectangle(0, 0, this.Width, this.Height),
  293. _borderColor,
  294. _borderWidth,
  295. ButtonBorderStyle.Solid,
  296. _borderColor,
  297. _borderWidth,
  298. ButtonBorderStyle.Solid,
  299. _borderColor,
  300. _borderWidth,
  301. ButtonBorderStyle.Solid,
  302. _borderColor,
  303. _borderWidth,
  304. ButtonBorderStyle.Solid);
  305. g.Dispose();
  306. ReleaseDC(Handle, hDC);
  307. }
  308. }
  309. #endregion
  310. #endregion
  311. #region 委托
  312. [Category("控件扩展事件"),Description("点击图标时触发的事件")]
  313. public event EventHandler IcoOnclick;
  314. #endregion
  315. #region 方法
  316. protected override void OnPaint(PaintEventArgs e)
  317. {
  318. Rectangle rc = this.ClientRectangle;
  319. Graphics g = e.Graphics;
  320. ImageDrawRect.DrawRect(g, _TextBoxBackImg, rc, Rectangle.FromLTRB(10, 10, 10, 10), (int)state, 5);
  321. // ImageDrawRect.DrawRect(g, _TextBoxBackImg, rc, (int)state, 5);
  322. if (_Isico)
  323. {
  324. if (_Ico != null)
  325. {
  326. g.DrawImage(_Ico, new Rectangle(_IcoPadding.Left, _IcoPadding.Top, 16, 16), new Rectangle(0, 0, Ico.Width, Ico.Height), GraphicsUnit.Pixel);
  327. }
  328. }
  329. base.OnPaint(e);
  330. }
  331. /// <summary>
  332. /// 禁止调整大小
  333. /// </summary>
  334. /// <param name="e"></param>
  335. protected override void OnResize(EventArgs e)
  336. {
  337. if (this.Height > 22)
  338. {
  339. Multiline = true;
  340. }
  341. else
  342. {
  343. this.Height = 22;
  344. Multiline = false;
  345. }
  346. setTextBoxExSize();
  347. if (Isico && Ico != null)
  348. {
  349. this.BaseText.Width = this.Width - 3 - this.IcoPadding.Left - 16;
  350. }
  351. else
  352. {
  353. this.BaseText.Width = this.Width - 6;
  354. }
  355. }
  356. //protected override void OnFontChanged(EventArgs e)
  357. //{
  358. // if (Multiline)
  359. // {
  360. // this.BaseText.Height = this.Height - 8;
  361. // }
  362. // else
  363. // {
  364. // this.Height = 210;
  365. // this.BaseText.Height = 140;
  366. // }
  367. // base.OnFontChanged(e);
  368. //}
  369. private void NotifyIcoOnclick()
  370. {
  371. if (IcoOnclick != null)
  372. {
  373. IcoOnclick(this, EventArgs.Empty);
  374. }
  375. }
  376. public void AppendText(string ss)
  377. {
  378. BaseText.AppendText(ss);
  379. }
  380. private void BaseText_MouseEnter(object sender, EventArgs e)
  381. {
  382. state = State.MouseOver;
  383. this.Invalidate();
  384. }
  385. private void BaseText_MouseLeave(object sender, EventArgs e)
  386. {
  387. state = State.Default;
  388. this.Invalidate();
  389. }
  390. private void TextBoxEx_MouseUp(object sender, MouseEventArgs e)
  391. {
  392. if (_Ico != null)
  393. {
  394. if (new Rectangle(_IcoPadding.Left, _IcoPadding.Top, _Ico.Width, _Ico.Height).Contains(e.X, e.Y))
  395. {
  396. NotifyIcoOnclick();
  397. }
  398. }
  399. }
  400. private void TextBoxEx_MouseEnter(object sender, EventArgs e)
  401. {
  402. state = State.MouseOver;
  403. this.Invalidate();
  404. }
  405. private void TextBoxEx_MouseLeave(object sender, EventArgs e)
  406. {
  407. state = State.Default;
  408. this.Invalidate();
  409. }
  410. #region 定义文本框值更改后触发事件
  411. //定义delegate
  412. public delegate void TextBoxEx_TextChanged(object sender, EventArgs e);
  413. //用event 关键字声明事件对象
  414. /// <summary>
  415. ///
  416. /// </summary>
  417. [Category("控件扩展事件"), Description("文本框值修改时")]
  418. public event TextBoxEx_TextChanged EventTextBoxEx_TextChanged;
  419. #endregion
  420. private void BaseText_TextChanged(object sender, EventArgs e)
  421. {
  422. if(this.EventTextBoxEx_TextChanged!=null)
  423. EventTextBoxEx_TextChanged(sender, e);
  424. }
  425. #endregion
  426. }
  427. }