123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Runtime.InteropServices;
- namespace LYFZ.ComponentLibrary
- {
- public partial class TextBoxEx : UserControl
- {
- #region 声明
- private Bitmap _TextBoxBackImg = LYFZ.ComponentLibrary.Properties.Resources.Textbox_bule;
- private State state = State.Default;
- private bool _Isico = false;
- private Bitmap _Ico;
- private Padding _IcoPadding = new Padding(3, 3, 0, 0);
- //枚鼠标状态
- private enum State
- {
- Normal = 1,
- MouseOver = 2,
- MouseDown = 3,
- Disable = 4,
- Default = 5
- }
- #endregion
- public TextBoxEx()
- {
- InitializeComponent();
- this.SetStyle(ControlStyles.UserPaint, true);
- this.SetStyle(ControlStyles.DoubleBuffer, true);
- this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
- this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
- this.SetStyle(ControlStyles.StandardDoubleClick, false);
- this.SetStyle(ControlStyles.Selectable, true);
- this.BackColor = Color.Transparent;
- SetStyle(ControlStyles.DoubleBuffer, true);
- SetStyle(ControlStyles.AllPaintingInWmPaint, false);
- SetStyle(ControlStyles.ResizeRedraw, true);
- SetStyle(ControlStyles.UserPaint, true);
- SetStyle(ControlStyles.SupportsTransparentBackColor, true);
- this.Paint += new PaintEventHandler(TextBoxEx_Paint);
- }
- void BaseText_SizeChanged(object sender, EventArgs e)
- {
- setTextBoxExSize();
- }
- /// <summary>
- /// 设置大小
- /// </summary>
- void setTextBoxExSize()
- {
- if (BaseText.Multiline)
- {
- BaseText.Height = this.Height - 6;
- this.BaseText.Width = this.Width - 6;
- }
- else
- {
- this.Height = BaseText.Height + 6;
- this.BaseText.Width = this.Width - 6;
- }
- }
- #region 属性
- [Category("控件扩展属性"), Description("输入最大字符数")]
- public int MaxLength
- {
- get { return BaseText.MaxLength; }
- set { BaseText.MaxLength = value; Invalidate(false); }
- }
- [Browsable(true),Category("控件扩展属性"), Description("与控件关联的文本"),DefaultValue("")]
- public override string Text
- {
- get
- {
- return BaseText.Text;
- }
- set
- {
- BaseText.Text = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("将控件设为密码显示")]
- public bool IsPass
- {
- get
- {
- return BaseText.UseSystemPasswordChar;
- }
- set
- {
- BaseText.UseSystemPasswordChar = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("密码显示字符")]
- public char PassChar
- {
- get
- {
- return BaseText.PasswordChar;
- }
- set
- {
- BaseText.PasswordChar = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("将控件设为多行文本显示")]
- public bool Multiline
- {
- get
- {
- return BaseText.Multiline;
- }
- set
- {
- BaseText.Multiline = value;
- if (value)
- {
- BaseText.Height = this.Height - 6;
- }
- else
- {
- base.Height = 22;
- BaseText.Height = 16;
- this.Invalidate();
- }
-
- }
- }
- [Category("控件扩展属性"), Description("设置控件中文本字体")]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
- public override Font Font
- {
- get
- {
-
- return BaseText.Font;
- }
- set
- {
- BaseText.Font = value;
- Invalidate();
- }
- }
- [Category("控件扩展属性"), Description("将控件设为只读")]
- public bool ReadOnly
- {
- get
- {
- return BaseText.ReadOnly;
- }
- set
- {
- BaseText.ReadOnly = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("多行文本的编辑行")]
- public String[] lines
- {
- get
- {
- return BaseText.Lines;
- }
- set
- {
- BaseText.Lines = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("是否显示图标")]
- public bool Isico
- {
- get
- {
- return _Isico;
- }
- set
- {
- _Isico = value;
- if (value)
- {
- if (_Ico != null)
- {
- BaseText.Location = new Point(_IcoPadding.Left + _Ico.Width, 3);
- BaseText.Width = BaseText.Width - _IcoPadding.Left - _Ico.Width;
- }
- else
- {
- BaseText.Location = new Point(25, 3);
- BaseText.Width = BaseText.Width - 25;
- }
- }
- this.Invalidate();
- }
- }
- [Category("控件扩展属性"), Description("图标文件")]
- public Bitmap Ico
- {
- get
- {
- return _Ico;
- }
- set
- {
- _Ico = value; Invalidate(false);
- }
- }
- [Category("控件扩展属性"), Description("控件内部间距,图标文件")]
- public Padding IcoPadding
- {
- get { return _IcoPadding; }
- set
- {
- _IcoPadding = value;
- this.Invalidate();
- }
- }
- [Category("控件扩展属性"), Description("滚动条显示设置"), DefaultValue(typeof(ScrollBars), "None")]
- public ScrollBars ScrollBars
- {
- get { return BaseText.ScrollBars; }
- set { BaseText.ScrollBars = value; Invalidate(false); }
- }
- public new bool Enabled {
- get { return base.Enabled; }
- set { base.Enabled = value;
- if (!base.Enabled)
- {
- state = State.Disable;
- }
- else {
- state = State.Default;
- }
- Invalidate(false);
- }
- }
- #region 文本框边框颜色
-
- [DllImport("user32.dll")]
- private static extern IntPtr GetWindowDC(IntPtr hwnd);
- [DllImport("user32.dll")]
- private static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc);
- private Color _borderColor = Color.Black;
- private int _borderWidth = 1;
- //
- // 摘要:
- // 获取或设置控件的边框颜色。
- //
- // 返回结果:
- // 控件的边框颜色 System.Drawing.Color。默认为 System.Drawing.Color.Black
- // 属性的值。
- [Description("组件的边框颜色。"), Category("Appearance")]
- public Color BorderColor
- {
- get
- {
- return _borderColor;
- }
- set
- {
- _borderColor = value;
- this.Invalidate();
- }
- }
- //
- // 摘要:
- // 获取或设置控件的边框宽度。
- //
- // 返回结果:
- // 控件的边框宽度 int。默认为 1
- // 属性的值。
- [Description("组件的边框宽度。"), Category("Appearance")]
- public int BorderWidth
- {
- get
- {
- return _borderWidth;
- }
- set
- {
- _borderWidth = value;
- this.Invalidate();
- }
- }
- private void TextBoxEx_Paint(object sender, PaintEventArgs e)
- {
- if (this.BorderStyle == BorderStyle.FixedSingle)
- {
- IntPtr hDC = GetWindowDC(this.Handle);
- Graphics g = Graphics.FromHdc(hDC);
- ControlPaint.DrawBorder(
- g,
- new Rectangle(0, 0, this.Width, this.Height),
- _borderColor,
- _borderWidth,
- ButtonBorderStyle.Solid,
- _borderColor,
- _borderWidth,
- ButtonBorderStyle.Solid,
- _borderColor,
- _borderWidth,
- ButtonBorderStyle.Solid,
- _borderColor,
- _borderWidth,
- ButtonBorderStyle.Solid);
- g.Dispose();
- ReleaseDC(Handle, hDC);
- }
- }
- #endregion
- #endregion
- #region 委托
- [Category("控件扩展事件"),Description("点击图标时触发的事件")]
- public event EventHandler IcoOnclick;
- #endregion
- #region 方法
- protected override void OnPaint(PaintEventArgs e)
- {
- Rectangle rc = this.ClientRectangle;
- Graphics g = e.Graphics;
- ImageDrawRect.DrawRect(g, _TextBoxBackImg, rc, Rectangle.FromLTRB(10, 10, 10, 10), (int)state, 5);
- // ImageDrawRect.DrawRect(g, _TextBoxBackImg, rc, (int)state, 5);
- if (_Isico)
- {
- if (_Ico != null)
- {
- g.DrawImage(_Ico, new Rectangle(_IcoPadding.Left, _IcoPadding.Top, 16, 16), new Rectangle(0, 0, Ico.Width, Ico.Height), GraphicsUnit.Pixel);
- }
- }
-
- base.OnPaint(e);
- }
- /// <summary>
- /// 禁止调整大小
- /// </summary>
- /// <param name="e"></param>
- protected override void OnResize(EventArgs e)
- {
- if (this.Height > 22)
- {
- Multiline = true;
- }
- else
- {
- this.Height = 22;
- Multiline = false;
- }
- setTextBoxExSize();
- if (Isico && Ico != null)
- {
- this.BaseText.Width = this.Width - 3 - this.IcoPadding.Left - 16;
- }
- else
- {
- this.BaseText.Width = this.Width - 6;
- }
- }
- //protected override void OnFontChanged(EventArgs e)
- //{
- // if (Multiline)
- // {
- // this.BaseText.Height = this.Height - 8;
- // }
- // else
- // {
- // this.Height = 210;
- // this.BaseText.Height = 140;
- // }
- // base.OnFontChanged(e);
- //}
- private void NotifyIcoOnclick()
- {
- if (IcoOnclick != null)
- {
- IcoOnclick(this, EventArgs.Empty);
- }
- }
- public void AppendText(string ss)
- {
- BaseText.AppendText(ss);
- }
- private void BaseText_MouseEnter(object sender, EventArgs e)
- {
- state = State.MouseOver;
- this.Invalidate();
- }
- private void BaseText_MouseLeave(object sender, EventArgs e)
- {
- state = State.Default;
- this.Invalidate();
- }
- private void TextBoxEx_MouseUp(object sender, MouseEventArgs e)
- {
- if (_Ico != null)
- {
- if (new Rectangle(_IcoPadding.Left, _IcoPadding.Top, _Ico.Width, _Ico.Height).Contains(e.X, e.Y))
- {
- NotifyIcoOnclick();
- }
- }
- }
- private void TextBoxEx_MouseEnter(object sender, EventArgs e)
- {
- state = State.MouseOver;
- this.Invalidate();
- }
- private void TextBoxEx_MouseLeave(object sender, EventArgs e)
- {
- state = State.Default;
- this.Invalidate();
- }
- #region 定义文本框值更改后触发事件
- //定义delegate
- public delegate void TextBoxEx_TextChanged(object sender, EventArgs e);
- //用event 关键字声明事件对象
- /// <summary>
- ///
- /// </summary>
- [Category("控件扩展事件"), Description("文本框值修改时")]
- public event TextBoxEx_TextChanged EventTextBoxEx_TextChanged;
-
- #endregion
- private void BaseText_TextChanged(object sender, EventArgs e)
- {
- if(this.EventTextBoxEx_TextChanged!=null)
- EventTextBoxEx_TextChanged(sender, e);
- }
- #endregion
- }
- }
|