123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- using LYFZ.OtherExpansion.SkinClass;
- using LYFZ.OtherExpansion.Win32;
- using LYFZ.OtherExpansion.Win32.Struct;
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Runtime.InteropServices;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(ComboBox))]
- public class SkinComboBox : ComboBox
- {
- private class EditNativeWindow : NativeWindow, IDisposable
- {
- private const int WM_PAINT = 15;
- private SkinComboBox _owner;
- public EditNativeWindow(SkinComboBox owner)
- {
- this._owner = owner;
- base.AssignHandle(this._owner.EditHandle);
- }
- [DllImport("user32.dll")]
- private static extern IntPtr GetDC(IntPtr ptr);
- [DllImport("user32.dll")]
- private static extern int ReleaseDC(IntPtr hwnd, IntPtr hDC);
- protected override void WndProc(ref Message m)
- {
- base.WndProc(ref m);
- if (m.Msg == 15)
- {
- IntPtr handle = m.HWnd;
- IntPtr hdc = SkinComboBox.EditNativeWindow.GetDC(handle);
- if (hdc == IntPtr.Zero)
- {
- return;
- }
- try
- {
- using (Graphics graphics = Graphics.FromHdc(hdc))
- {
- if (this._owner.Text.Length == 0 && !this._owner.Focused && !string.IsNullOrEmpty(this._owner.WaterText))
- {
- TextFormatFlags format = TextFormatFlags.EndEllipsis | TextFormatFlags.VerticalCenter;
- if (this._owner.RightToLeft == RightToLeft.Yes)
- {
- format |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
- }
- TextRenderer.DrawText(graphics, this._owner.WaterText, new Font("微软雅黑", 8.5f), new Rectangle(0, 0, this._owner.EditRect.Width, this._owner.EditRect.Height), this._owner.WaterColor, format);
- }
- }
- }
- finally
- {
- SkinComboBox.EditNativeWindow.ReleaseDC(handle, hdc);
- }
- }
- }
- public void Dispose()
- {
- this.ReleaseHandle();
- this._owner = null;
- }
- }
- private SkinComboBox.EditNativeWindow _editNativeWindow;
- private bool _bPainting;
- private Color mouseColor = Color.FromArgb(62, 151, 216);
- private Color mouseGradientColor = Color.FromArgb(51, 137, 201);
- private Color dropBackColor = Color.White;
- private Color itemBorderColor = Color.CornflowerBlue;
- private Color itemHoverForeColor = Color.White;
- private string _waterText = string.Empty;
- private Color _waterColor = Color.FromArgb(127, 127, 127);
- private Color _baseColor = Color.FromArgb(51, 161, 224);
- private Color _borderColor = Color.FromArgb(51, 161, 224);
- private Color _arrowColor = Color.FromArgb(19, 88, 128);
- private ControlState _buttonState;
- private IntPtr _editHandle;
- [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "62, 151, 216"), Description("项被选中后的高亮度颜色")]
- public Color MouseColor
- {
- get
- {
- return this.mouseColor;
- }
- set
- {
- this.mouseColor = value;
- base.Invalidate();
- }
- }
- [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "51, 137, 201"), Description("项被选中后的渐变颜色")]
- public Color MouseGradientColor
- {
- get
- {
- return this.mouseGradientColor;
- }
- set
- {
- this.mouseGradientColor = value;
- base.Invalidate();
- }
- }
- [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "White"), Description("下拉框背景色")]
- public Color DropBackColor
- {
- get
- {
- return this.dropBackColor;
- }
- set
- {
- this.dropBackColor = value;
- base.Invalidate();
- }
- }
- [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "CornflowerBlue"), Description("项被选中时的边框颜色")]
- public Color ItemBorderColor
- {
- get
- {
- return this.itemBorderColor;
- }
- set
- {
- this.itemBorderColor = value;
- base.Invalidate();
- }
- }
- [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "White"), Description("项被选中时的字体颜色")]
- public Color ItemHoverForeColor
- {
- get
- {
- return this.itemHoverForeColor;
- }
- set
- {
- this.itemHoverForeColor = value;
- base.Invalidate();
- }
- }
- [Category("Skin"), Description("水印文字")]
- public string WaterText
- {
- get
- {
- return this._waterText;
- }
- set
- {
- this._waterText = value;
- base.Invalidate();
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "127, 127, 127"), Description("水印的颜色")]
- public Color WaterColor
- {
- get
- {
- return this._waterColor;
- }
- set
- {
- this._waterColor = value;
- base.Invalidate();
- }
- }
- [Category("Base"), DefaultValue(typeof(Color), "51, 161, 224"), Description("下拉按钮背景色")]
- public Color BaseColor
- {
- get
- {
- return this._baseColor;
- }
- set
- {
- if (this._baseColor != value)
- {
- this._baseColor = value;
- base.Invalidate();
- }
- }
- }
- [Category("Base"), DefaultValue(typeof(Color), "51, 161, 224"), Description("边框颜色")]
- public Color BorderColor
- {
- get
- {
- return this._borderColor;
- }
- set
- {
- if (this._borderColor != value)
- {
- this._borderColor = value;
- base.Invalidate();
- }
- }
- }
- [Category("Base"), DefaultValue(typeof(Color), "19, 88, 128"), Description("箭头颜色")]
- public Color ArrowColor
- {
- get
- {
- return this._arrowColor;
- }
- set
- {
- if (this._arrowColor != value)
- {
- this._arrowColor = value;
- base.Invalidate();
- }
- }
- }
- internal ControlState ButtonState
- {
- get
- {
- return this._buttonState;
- }
- set
- {
- if (this._buttonState != value)
- {
- this._buttonState = value;
- base.Invalidate(this.ButtonRect);
- }
- }
- }
- internal Rectangle ButtonRect
- {
- get
- {
- return this.GetDropDownButtonRect();
- }
- }
- internal bool ButtonPressed
- {
- get
- {
- return base.IsHandleCreated && this.GetComboBoxButtonPressed();
- }
- }
- internal IntPtr EditHandle
- {
- get
- {
- return this._editHandle;
- }
- }
- internal Rectangle EditRect
- {
- get
- {
- if (base.DropDownStyle == ComboBoxStyle.DropDownList)
- {
- Rectangle rect = new Rectangle(3, 3, base.Width - this.ButtonRect.Width - 6, base.Height - 6);
- if (this.RightToLeft == RightToLeft.Yes)
- {
- rect.X += this.ButtonRect.Right;
- }
- return rect;
- }
- if (base.IsHandleCreated && this.EditHandle != IntPtr.Zero)
- {
- RECT rcClient = default(RECT);
- NativeMethods.GetWindowRect(this.EditHandle, ref rcClient);
- return base.RectangleToClient(rcClient.Rect);
- }
- return Rectangle.Empty;
- }
- }
- public SkinComboBox()
- {
- base.SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer, true);
- base.DrawMode = DrawMode.OwnerDrawFixed;
- }
- protected override void OnDrawItem(DrawItemEventArgs e)
- {
- base.OnDrawItem(e);
- if (e.Index == -1)
- {
- return;
- }
- if ((e.State & DrawItemState.Selected) != DrawItemState.None)
- {
- LinearGradientBrush brush = new LinearGradientBrush(e.Bounds, this.MouseColor, this.mouseGradientColor, LinearGradientMode.Vertical);
- Rectangle borderRect = new Rectangle(1, e.Bounds.Y + 1, e.Bounds.Width - 2, e.Bounds.Height - 2);
- e.Graphics.FillRectangle(brush, borderRect);
- Pen pen = new Pen(this.ItemBorderColor);
- e.Graphics.DrawRectangle(pen, borderRect);
- }
- else
- {
- SolidBrush brush2 = new SolidBrush(this.DropBackColor);
- e.Graphics.FillRectangle(brush2, e.Bounds);
- }
- string itemText = base.Items[e.Index].ToString();
- Color fore = ((e.State & DrawItemState.Selected) != DrawItemState.None) ? this.ItemHoverForeColor : this.ForeColor;
- StringFormat strFormat = new StringFormat();
- strFormat.LineAlignment = StringAlignment.Center;
- e.Graphics.DrawString(itemText, this.Font, new SolidBrush(fore), e.Bounds, strFormat);
- }
- protected override void OnHandleCreated(EventArgs e)
- {
- base.OnHandleCreated(e);
- NativeMethods.ComboBoxInfo cbi = default(NativeMethods.ComboBoxInfo);
- cbi.cbSize = Marshal.SizeOf(cbi);
- NativeMethods.GetComboBoxInfo(base.Handle, ref cbi);
- this._editHandle = cbi.hwndEdit;
- if (base.DropDownStyle != ComboBoxStyle.DropDownList)
- {
- this._editNativeWindow = new SkinComboBox.EditNativeWindow(this);
- }
- }
- protected override void OnHandleDestroyed(EventArgs e)
- {
- base.OnHandleDestroyed(e);
- if (this._editNativeWindow != null)
- {
- this._editNativeWindow.Dispose();
- this._editNativeWindow = null;
- }
- }
- protected override void OnCreateControl()
- {
- base.OnCreateControl();
- this._editHandle = this.GetComboBoxInfo().hwndEdit;
- }
- protected override void OnMouseMove(MouseEventArgs e)
- {
- base.OnMouseMove(e);
- Point point = e.Location;
- if (this.ButtonRect.Contains(point))
- {
- this.ButtonState = ControlState.Hover;
- return;
- }
- this.ButtonState = ControlState.Normal;
- }
- protected override void OnMouseEnter(EventArgs e)
- {
- base.OnMouseEnter(e);
- Point point = base.PointToClient(Cursor.Position);
- if (this.ButtonRect.Contains(point))
- {
- this.ButtonState = ControlState.Hover;
- }
- }
- protected override void OnMouseLeave(EventArgs e)
- {
- base.OnMouseLeave(e);
- this.ButtonState = ControlState.Normal;
- }
- protected override void OnMouseUp(MouseEventArgs e)
- {
- base.OnMouseUp(e);
- this.ButtonState = ControlState.Normal;
- }
- protected override void WndProc(ref Message m)
- {
- int msg = m.Msg;
- if (msg == 15)
- {
- this.WmPaint(ref m);
- return;
- }
- base.WndProc(ref m);
- }
- private void WmPaint(ref Message m)
- {
- if (base.DropDownStyle == ComboBoxStyle.Simple)
- {
- base.WndProc(ref m);
- return;
- }
- if (base.DropDownStyle != ComboBoxStyle.DropDown)
- {
- base.WndProc(ref m);
- this.RenderComboBox(ref m);
- return;
- }
- if (!this._bPainting)
- {
- PAINTSTRUCT ps = default(PAINTSTRUCT);
- this._bPainting = true;
- NativeMethods.BeginPaint(m.HWnd, ref ps);
- this.RenderComboBox(ref m);
- NativeMethods.EndPaint(m.HWnd, ref ps);
- this._bPainting = false;
- m.Result = Result.TRUE;
- return;
- }
- base.WndProc(ref m);
- }
- private void RenderComboBox(ref Message m)
- {
- Rectangle rect = new Rectangle(Point.Empty, base.Size);
- Rectangle buttonRect = this.ButtonRect;
- ControlState state = this.ButtonPressed ? ControlState.Pressed : this.ButtonState;
- using (Graphics g = Graphics.FromHwnd(m.HWnd))
- {
- this.RenderComboBoxBackground(g, rect, buttonRect);
- this.RenderConboBoxDropDownButton(g, this.ButtonRect, state);
- this.RenderConboBoxBorder(g, rect);
- }
- }
- private void RenderConboBoxBorder(Graphics g, Rectangle rect)
- {
- Color borderColor = base.Enabled ? this._borderColor : SystemColors.ControlDarkDark;
- using (Pen pen = new Pen(borderColor))
- {
- rect.Width--;
- rect.Height--;
- g.DrawRectangle(pen, rect);
- }
- }
- private void RenderComboBoxBackground(Graphics g, Rectangle rect, Rectangle buttonRect)
- {
- Color backColor = base.Enabled ? base.BackColor : SystemColors.Control;
- using (SolidBrush brush = new SolidBrush(backColor))
- {
- buttonRect.Inflate(-1, -1);
- rect.Inflate(-1, -1);
- using (Region region = new Region(rect))
- {
- region.Exclude(buttonRect);
- region.Exclude(this.EditRect);
- g.FillRegion(brush, region);
- }
- }
- }
- private void RenderConboBoxDropDownButton(Graphics g, Rectangle buttonRect, ControlState state)
- {
- Color backColor = Color.FromArgb(160, 250, 250, 250);
- Color borderColor = base.Enabled ? this._borderColor : SystemColors.ControlDarkDark;
- Color arrowColor = base.Enabled ? this._arrowColor : SystemColors.ControlDarkDark;
- Rectangle rect = buttonRect;
- Color baseColor;
- if (base.Enabled)
- {
- switch (state)
- {
- case ControlState.Hover:
- baseColor = RenderHelper.GetColor(this._baseColor, 0, -33, -22, -13);
- break;
- case ControlState.Pressed:
- baseColor = RenderHelper.GetColor(this._baseColor, 0, -65, -47, -25);
- break;
- default:
- baseColor = this._baseColor;
- break;
- }
- }
- else
- {
- baseColor = SystemColors.ControlDark;
- }
- rect.Inflate(-1, -1);
- this.RenderScrollBarArrowInternal(g, rect, baseColor, borderColor, backColor, arrowColor, RoundStyle.None, true, false, ArrowDirection.Down, LinearGradientMode.Vertical);
- }
- internal void RenderScrollBarArrowInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, Color arrowColor, RoundStyle roundStyle, bool drawBorder, bool drawGlass, ArrowDirection arrowDirection, LinearGradientMode mode)
- {
- RenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, roundStyle, 0, 0.45f, drawBorder, drawGlass, mode);
- using (SolidBrush brush = new SolidBrush(arrowColor))
- {
- this.RenderArrowInternal(g, rect, arrowDirection, brush);
- }
- }
- internal void RenderArrowInternal(Graphics g, Rectangle dropDownRect, ArrowDirection direction, Brush brush)
- {
- Point point = new Point(dropDownRect.Left + dropDownRect.Width / 2, dropDownRect.Top + dropDownRect.Height / 2);
- Point[] points;
- switch (direction)
- {
- case ArrowDirection.Left:
- points = new Point[]
- {
- new Point(point.X + 2, point.Y - 3),
- new Point(point.X + 2, point.Y + 3),
- new Point(point.X - 1, point.Y)
- };
- break;
- case ArrowDirection.Up:
- points = new Point[]
- {
- new Point(point.X - 3, point.Y + 2),
- new Point(point.X + 3, point.Y + 2),
- new Point(point.X, point.Y - 2)
- };
- break;
- default:
- if (direction != ArrowDirection.Right)
- {
- points = new Point[]
- {
- new Point(point.X - 2, point.Y - 1),
- new Point(point.X + 3, point.Y - 1),
- new Point(point.X, point.Y + 2)
- };
- }
- else
- {
- points = new Point[]
- {
- new Point(point.X - 2, point.Y - 3),
- new Point(point.X - 2, point.Y + 3),
- new Point(point.X + 1, point.Y)
- };
- }
- break;
- }
- g.FillPolygon(brush, points);
- }
- private NativeMethods.ComboBoxInfo GetComboBoxInfo()
- {
- NativeMethods.ComboBoxInfo cbi = default(NativeMethods.ComboBoxInfo);
- cbi.cbSize = Marshal.SizeOf(cbi);
- NativeMethods.GetComboBoxInfo(base.Handle, ref cbi);
- return cbi;
- }
- private bool GetComboBoxButtonPressed()
- {
- return this.GetComboBoxInfo().stateButton == NativeMethods.ComboBoxButtonState.STATE_SYSTEM_PRESSED;
- }
- private Rectangle GetDropDownButtonRect()
- {
- return this.GetComboBoxInfo().rcButton.Rect;
- }
- }
- }
|