123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- using LYFZ.OtherExpansion.Imaging;
- using LYFZ.OtherExpansion.SkinClass;
- using System;
- using System.Drawing;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- public class SkinHScrollBar : HScrollBar, IScrollBarPaint
- {
- private ScrollBarManager _manager;
- private Color _base = Color.FromArgb(171, 230, 247);
- private Color _backNormal = Color.FromArgb(235, 249, 253);
- private Color _backHover = Color.FromArgb(121, 216, 243);
- private Color _backPressed = Color.FromArgb(70, 202, 239);
- private Color _border = Color.FromArgb(89, 210, 249);
- private Color _innerBorder = Color.FromArgb(200, 250, 250, 250);
- private Color _fore = Color.FromArgb(48, 135, 192);
- public Color Base
- {
- get
- {
- return this._base;
- }
- set
- {
- if (this._base != value)
- {
- this._base = value;
- base.Invalidate();
- }
- }
- }
- public Color BackNormal
- {
- get
- {
- return this._backNormal;
- }
- set
- {
- if (this._backNormal != value)
- {
- this._backNormal = value;
- base.Invalidate();
- }
- }
- }
- public Color BackHover
- {
- get
- {
- return this._backHover;
- }
- set
- {
- if (this._backHover != value)
- {
- this._backHover = value;
- base.Invalidate();
- }
- }
- }
- public Color BackPressed
- {
- get
- {
- return this._backPressed;
- }
- set
- {
- if (this._backPressed != value)
- {
- this._backPressed = value;
- base.Invalidate();
- }
- }
- }
- public Color Border
- {
- get
- {
- return this._border;
- }
- set
- {
- if (this._border != value)
- {
- this._border = value;
- base.Invalidate();
- }
- }
- }
- public Color InnerBorder
- {
- get
- {
- return this._innerBorder;
- }
- set
- {
- if (this._innerBorder != value)
- {
- this._innerBorder = value;
- base.Invalidate();
- }
- }
- }
- public Color Fore
- {
- get
- {
- return this._fore;
- }
- set
- {
- if (this._fore != value)
- {
- this._fore = value;
- base.Invalidate();
- }
- }
- }
- protected override void OnHandleCreated(EventArgs e)
- {
- base.OnHandleCreated(e);
- if (this._manager != null)
- {
- this._manager.Dispose();
- }
- if (!base.DesignMode)
- {
- this._manager = new ScrollBarManager(this);
- }
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing && this._manager != null)
- {
- this._manager.Dispose();
- this._manager = null;
- }
- base.Dispose(disposing);
- }
- protected virtual void OnPaintScrollBarTrack(PaintScrollBarTrackEventArgs e)
- {
- Graphics g = e.Graphics;
- Rectangle rect = e.TrackRectangle;
- Color baseColor = this.GetGray(this.Base);
- ControlPaintEx.DrawScrollBarTrack(g, rect, baseColor, Color.White, e.Orientation);
- }
- protected virtual void OnPaintScrollBarArrow(PaintScrollBarArrowEventArgs e)
- {
- Graphics g = e.Graphics;
- Rectangle rect = e.ArrowRectangle;
- ControlState controlState = e.ControlState;
- ArrowDirection direction = e.ArrowDirection;
- Orientation arg_22_0 = e.Orientation;
- bool bEnabled = e.Enabled;
- Color backColor = this.BackNormal;
- Color baseColor = this.Base;
- Color borderColor = this.Border;
- Color innerBorderColor = this.InnerBorder;
- Color foreColor = this.Fore;
- bool changeColor = false;
- if (bEnabled)
- {
- switch (controlState)
- {
- case ControlState.Hover:
- baseColor = this.BackHover;
- break;
- case ControlState.Pressed:
- baseColor = this.BackPressed;
- changeColor = true;
- break;
- default:
- baseColor = this.Base;
- break;
- }
- }
- else
- {
- backColor = this.GetGray(backColor);
- baseColor = this.GetGray(this.Base);
- borderColor = this.GetGray(borderColor);
- foreColor = this.GetGray(foreColor);
- }
- using (new SmoothingModeGraphics(g))
- {
- ControlPaintEx.DrawScrollBarArraw(g, rect, baseColor, backColor, borderColor, innerBorderColor, foreColor, e.Orientation, direction, changeColor);
- }
- }
- protected virtual void OnPaintScrollBarThumb(PaintScrollBarThumbEventArgs e)
- {
- if (!e.Enabled)
- {
- return;
- }
- Graphics g = e.Graphics;
- Rectangle rect = e.ThumbRectangle;
- ControlState controlState = e.ControlState;
- Color backColor = this.BackNormal;
- Color baseColor = this.Base;
- Color borderColor = this.Border;
- Color innerBorderColor = this.InnerBorder;
- bool changeColor = false;
- switch (controlState)
- {
- case ControlState.Hover:
- baseColor = this.BackHover;
- break;
- case ControlState.Pressed:
- baseColor = this.BackPressed;
- changeColor = true;
- break;
- default:
- baseColor = this.Base;
- break;
- }
- using (new SmoothingModeGraphics(g))
- {
- ControlPaintEx.DrawScrollBarThumb(g, rect, baseColor, backColor, borderColor, innerBorderColor, e.Orientation, changeColor);
- }
- }
- private Color GetGray(Color color)
- {
- return ColorConverterEx.RgbToGray(new RGB(color)).Color;
- }
- void IScrollBarPaint.OnPaintScrollBarArrow(PaintScrollBarArrowEventArgs e)
- {
- this.OnPaintScrollBarArrow(e);
- }
- void IScrollBarPaint.OnPaintScrollBarThumb(PaintScrollBarThumbEventArgs e)
- {
- this.OnPaintScrollBarThumb(e);
- }
- void IScrollBarPaint.OnPaintScrollBarTrack(PaintScrollBarTrackEventArgs e)
- {
- this.OnPaintScrollBarTrack(e);
- }
- }
- }
|