SkinTextBox.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. using LYFZ.ComponentLibrary.Properties;
  2. using LYFZ.OtherExpansion.SkinClass;
  3. using System;
  4. using System.ComponentModel;
  5. using System.Drawing;
  6. using System.Drawing.Drawing2D;
  7. using System.Windows.Forms;
  8. namespace LYFZ.OtherExpansion.SkinControl
  9. {
  10. public class SkinTextBox : UserControl
  11. {
  12. private bool flag;
  13. private Cursor _cursor = Cursors.IBeam;
  14. private ControlState _mouseState;
  15. private ControlState _iconMouseState;
  16. private Bitmap mouseback;
  17. private Bitmap normlback;
  18. private bool _iconIsButton;
  19. private Image _icon;
  20. private IContainer components = null;
  21. private WaterTextBox BaseText;
  22. public event EventHandler IconClick;
  23. [Category("Skin"), Description("悬浮时背景框。")]
  24. public Bitmap MouseBack
  25. {
  26. get
  27. {
  28. return this.mouseback;
  29. }
  30. set
  31. {
  32. if (this.mouseback != value)
  33. {
  34. this.mouseback = value;
  35. base.Invalidate();
  36. }
  37. }
  38. }
  39. [Category("Skin"), Description("正常状态时背景框。")]
  40. public Bitmap NormlBack
  41. {
  42. get
  43. {
  44. return this.normlback;
  45. }
  46. set
  47. {
  48. if (this.normlback != value)
  49. {
  50. this.normlback = value;
  51. base.Invalidate();
  52. }
  53. }
  54. }
  55. [Category("Skin"), Description("指定可以在编辑控件中输入的最大字符数。")]
  56. public int MaxLength
  57. {
  58. get
  59. {
  60. return this.BaseText.MaxLength;
  61. }
  62. set
  63. {
  64. this.BaseText.MaxLength = value;
  65. }
  66. }
  67. [Category("Skin"), Description("控件编辑控件的文本是否能够跨越多行。")]
  68. public bool Multiline
  69. {
  70. get
  71. {
  72. return this.BaseText.Multiline;
  73. }
  74. set
  75. {
  76. this.BaseText.Multiline = value;
  77. }
  78. }
  79. [Category("Skin"), Description("指示将为单行编辑控件的密码输入显示的字符。")]
  80. public char IsPasswordChat
  81. {
  82. get
  83. {
  84. return this.BaseText.PasswordChar;
  85. }
  86. set
  87. {
  88. this.BaseText.PasswordChar = value;
  89. }
  90. }
  91. [Category("Skin"), Description("控制能否更改编辑控件中的文本。")]
  92. public bool ReadOnly
  93. {
  94. get
  95. {
  96. return this.BaseText.ReadOnly;
  97. }
  98. set
  99. {
  100. this.BaseText.ReadOnly = value;
  101. }
  102. }
  103. [Category("Skin"), Description("指示编辑控件中的文本是否以默认的密码字符显示。")]
  104. public bool IsSystemPasswordChar
  105. {
  106. get
  107. {
  108. return this.BaseText.UseSystemPasswordChar;
  109. }
  110. set
  111. {
  112. this.BaseText.UseSystemPasswordChar = value;
  113. }
  114. }
  115. [Category("Skin"), Description("指示多行编辑控件是否自动换行。")]
  116. public bool WordWrap
  117. {
  118. get
  119. {
  120. return this.BaseText.WordWrap;
  121. }
  122. set
  123. {
  124. this.BaseText.WordWrap = value;
  125. }
  126. }
  127. [Category("Skin"), Description("用于显示控件中文本的字体。")]
  128. public override Font Font
  129. {
  130. get
  131. {
  132. return this.BaseText.Font;
  133. }
  134. set
  135. {
  136. this.BaseText.Font = value;
  137. base.Font = value;
  138. }
  139. }
  140. [Category("Skin"), Description("此组件的前景色,用于显示文本。")]
  141. public override Color ForeColor
  142. {
  143. get
  144. {
  145. return this.BaseText.ForeColor;
  146. }
  147. set
  148. {
  149. this.BaseText.ForeColor = value;
  150. base.ForeColor = value;
  151. }
  152. }
  153. [Category("Skin"), Description("多行编辑中的文本行,作为字符串值的数组。")]
  154. public string[] Lines
  155. {
  156. get
  157. {
  158. return this.BaseText.Lines;
  159. }
  160. set
  161. {
  162. this.BaseText.Lines = value;
  163. }
  164. }
  165. [Category("Skin"), Description("指示对于多行编辑控件,将为此控件显示哪些滚动条。")]
  166. public ScrollBars ScrollBars
  167. {
  168. get
  169. {
  170. return this.BaseText.ScrollBars;
  171. }
  172. set
  173. {
  174. this.BaseText.ScrollBars = value;
  175. }
  176. }
  177. [Category("Skin"), Description("指示应该如何对齐编辑控件的文本。")]
  178. public HorizontalAlignment TextAlign
  179. {
  180. get
  181. {
  182. return this.BaseText.TextAlign;
  183. }
  184. set
  185. {
  186. this.BaseText.TextAlign = value;
  187. }
  188. }
  189. [Category("Skin"), Description("文本框的图标")]
  190. public Image Icon
  191. {
  192. get
  193. {
  194. return this._icon;
  195. }
  196. set
  197. {
  198. if (this._icon != value)
  199. {
  200. this._icon = value;
  201. base.Invalidate(this.IconRect);
  202. this.PositionTextBox();
  203. }
  204. }
  205. }
  206. [Category("Skin"), Description("文本框的图标是否是按钮")]
  207. public bool IconIsButton
  208. {
  209. get
  210. {
  211. return this._iconIsButton;
  212. }
  213. set
  214. {
  215. this._iconIsButton = value;
  216. }
  217. }
  218. [Category("Skin"), Description("水印文字")]
  219. public string WaterText
  220. {
  221. get
  222. {
  223. return this.BaseText.WaterText;
  224. }
  225. set
  226. {
  227. this.BaseText.WaterText = value;
  228. }
  229. }
  230. [Category("Skin"), Description("水印颜色")]
  231. public Color WaterColor
  232. {
  233. get
  234. {
  235. return this.BaseText.WaterColor;
  236. }
  237. set
  238. {
  239. this.BaseText.WaterColor = value;
  240. }
  241. }
  242. [Browsable(true), Category("Skin"), Description("与控件关联的文本")]
  243. public override string Text
  244. {
  245. get
  246. {
  247. return this.BaseText.Text;
  248. }
  249. set
  250. {
  251. this.BaseText.Text = value;
  252. }
  253. }
  254. public override Cursor Cursor
  255. {
  256. get
  257. {
  258. return this._cursor;
  259. }
  260. set
  261. {
  262. this._cursor = value;
  263. }
  264. }
  265. protected ControlState MouseState
  266. {
  267. get
  268. {
  269. return this._mouseState;
  270. }
  271. set
  272. {
  273. this._mouseState = value;
  274. base.Invalidate();
  275. }
  276. }
  277. protected ControlState IconMouseState
  278. {
  279. get
  280. {
  281. return this._iconMouseState;
  282. }
  283. set
  284. {
  285. this._iconMouseState = value;
  286. base.Invalidate();
  287. }
  288. }
  289. protected Rectangle IconRect
  290. {
  291. get
  292. {
  293. return new Rectangle(base.Width - 23, 3, 20, 22);
  294. }
  295. }
  296. public SkinTextBox()
  297. {
  298. this.InitializeComponent();
  299. this.Init();
  300. this.InitEvents();
  301. this.BackColor = Color.Transparent;
  302. }
  303. public void Init()
  304. {
  305. base.SetStyle(ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer, true);
  306. base.UpdateStyles();
  307. }
  308. private void InitEvents()
  309. {
  310. this.BaseText.MouseEnter += new EventHandler(this.BaseText_MouseEnter);
  311. this.BaseText.MouseLeave += new EventHandler(this.BaseText_MouseLeave);
  312. this.BaseText.KeyDown += new KeyEventHandler(this.BaseText_KeyDown);
  313. this.BaseText.KeyPress += new KeyPressEventHandler(this.BaseText_KeyPress);
  314. this.BaseText.KeyUp += new KeyEventHandler(this.BaseText_KeyUp);
  315. }
  316. protected virtual void PositionTextBox()
  317. {
  318. if (this._icon != null && !this.flag)
  319. {
  320. base.Padding = new Padding(base.Padding.Left, base.Padding.Top, base.Padding.Right + 23, base.Padding.Bottom);
  321. this.flag = true;
  322. return;
  323. }
  324. if (this._icon == null && this.flag)
  325. {
  326. base.Padding = new Padding(base.Padding.Left, base.Padding.Top, base.Padding.Right - 23, base.Padding.Bottom);
  327. this.flag = false;
  328. }
  329. }
  330. public void AppendText(string str)
  331. {
  332. this.BaseText.AppendText(str);
  333. }
  334. private void OnIconClick()
  335. {
  336. if (this.IconClick != null)
  337. {
  338. this.IconClick(this, EventArgs.Empty);
  339. }
  340. }
  341. protected void BaseText_MouseLeave(object sender, EventArgs e)
  342. {
  343. this.MouseState = ControlState.Normal;
  344. }
  345. private void BaseText_MouseEnter(object sender, EventArgs e)
  346. {
  347. this.MouseState = ControlState.Hover;
  348. }
  349. private void BaseText_KeyUp(object sender, KeyEventArgs e)
  350. {
  351. this.OnKeyUp(e);
  352. }
  353. private void BaseText_KeyPress(object sender, KeyPressEventArgs e)
  354. {
  355. this.OnKeyPress(e);
  356. }
  357. private void BaseText_KeyDown(object sender, KeyEventArgs e)
  358. {
  359. this.OnKeyDown(e);
  360. }
  361. protected override void OnSizeChanged(EventArgs e)
  362. {
  363. base.OnSizeChanged(e);
  364. if (base.Height > 28)
  365. {
  366. this.BaseText.Multiline = true;
  367. return;
  368. }
  369. this.BaseText.Multiline = false;
  370. }
  371. protected override void OnPaint(PaintEventArgs e)
  372. {
  373. base.OnPaint(e);
  374. Graphics g = e.Graphics;
  375. g.SmoothingMode = SmoothingMode.AntiAlias;
  376. Bitmap mouse = (this.MouseBack == null) ? Resources.frameBorderEffect_mouseDownDraw : this.MouseBack;
  377. Bitmap norml = (this.NormlBack == null) ? Resources.frameBorderEffect_normalDraw : this.NormlBack;
  378. Bitmap btm = (this._mouseState == ControlState.Hover) ? mouse : norml;
  379. if (btm != null)
  380. {
  381. DrawHelper.RendererBackground(g, base.ClientRectangle, btm, true);
  382. }
  383. if (this._icon != null)
  384. {
  385. Rectangle iconRect = this.IconRect;
  386. if (this._iconMouseState == ControlState.Pressed)
  387. {
  388. iconRect.X++;
  389. iconRect.Y++;
  390. }
  391. g.DrawImage(this._icon, iconRect, 0, 0, this._icon.Width, this._icon.Height, GraphicsUnit.Pixel);
  392. }
  393. }
  394. protected override void OnMouseEnter(EventArgs e)
  395. {
  396. base.OnMouseEnter(e);
  397. this.MouseState = ControlState.Hover;
  398. }
  399. protected override void OnMouseMove(MouseEventArgs e)
  400. {
  401. base.OnMouseMove(e);
  402. if (this._icon == null || !this.IconRect.Contains(e.Location))
  403. {
  404. this.Cursor = Cursors.IBeam;
  405. return;
  406. }
  407. if (this._iconIsButton)
  408. {
  409. this.Cursor = Cursors.Hand;
  410. return;
  411. }
  412. this.Cursor = Cursors.IBeam;
  413. }
  414. protected override void OnMouseDown(MouseEventArgs e)
  415. {
  416. base.OnMouseDown(e);
  417. if (this._icon != null && this._iconIsButton && e.Button == MouseButtons.Left && this.IconRect.Contains(e.Location))
  418. {
  419. this.IconMouseState = ControlState.Pressed;
  420. }
  421. }
  422. protected override void OnMouseUp(MouseEventArgs e)
  423. {
  424. base.OnMouseUp(e);
  425. if (this._icon != null && this._iconIsButton)
  426. {
  427. this.IconMouseState = ControlState.Hover;
  428. if (e.Button == MouseButtons.Left && this.IconRect.Contains(e.Location))
  429. {
  430. this.OnIconClick();
  431. }
  432. }
  433. }
  434. protected override void OnMouseLeave(EventArgs e)
  435. {
  436. base.OnMouseLeave(e);
  437. this.MouseState = ControlState.Normal;
  438. }
  439. protected override void Dispose(bool disposing)
  440. {
  441. if (disposing && this.components != null)
  442. {
  443. this.components.Dispose();
  444. }
  445. base.Dispose(disposing);
  446. }
  447. private void InitializeComponent()
  448. {
  449. this.BaseText = new LYFZ.OtherExpansion.SkinControl.WaterTextBox();
  450. this.SuspendLayout();
  451. //
  452. // BaseText
  453. //
  454. this.BaseText.BorderStyle = System.Windows.Forms.BorderStyle.None;
  455. this.BaseText.Dock = System.Windows.Forms.DockStyle.Fill;
  456. this.BaseText.Font = new System.Drawing.Font("微软雅黑", 9.75F);
  457. this.BaseText.Location = new System.Drawing.Point(5, 5);
  458. this.BaseText.Margin = new System.Windows.Forms.Padding(0);
  459. this.BaseText.Name = "BaseText";
  460. this.BaseText.Size = new System.Drawing.Size(175, 18);
  461. this.BaseText.TabIndex = 1;
  462. this.BaseText.WaterColor = System.Drawing.Color.DarkGray;
  463. this.BaseText.WaterText = "";
  464. //
  465. // SkinTextBox
  466. //
  467. this.BackColor = System.Drawing.Color.Black;
  468. this.Controls.Add(this.BaseText);
  469. this.Cursor = System.Windows.Forms.Cursors.IBeam;
  470. this.DoubleBuffered = true;
  471. this.Margin = new System.Windows.Forms.Padding(0);
  472. this.MinimumSize = new System.Drawing.Size(0, 28);
  473. this.Name = "SkinTextBox";
  474. this.Padding = new System.Windows.Forms.Padding(5);
  475. this.Size = new System.Drawing.Size(185, 28);
  476. this.ResumeLayout(false);
  477. this.PerformLayout();
  478. }
  479. }
  480. }