123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- 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.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(ProgressBar))]
- public class SkinProgressBar : ProgressBar
- {
- private const int Internal = 10;
- private const int MarqueeWidth = 100;
- private BufferedGraphicsContext _context;
- private BufferedGraphics _bufferedGraphics;
- private bool _bPainting;
- private int _trackX = -100;
- private Timer _timer;
- private string _formatString = "{0:0.0%}";
- private bool barGlass = true;
- private bool glass = true;
- private BackStyle barBackStyle;
- private Size barMinusSize = new Size(1, 1);
- private bool txtShow = true;
- private int radius = 2;
- private RoundStyle radiusStyle = RoundStyle.All;
- private int barradius = 2;
- private RoundStyle barradiusStyle = RoundStyle.All;
- private Image back;
- private Image barBack;
- private Color _trackBack = Color.FromArgb(185, 185, 185);
- private Color _trackFore = Color.FromArgb(15, 181, 43);
- private Color _border = Color.FromArgb(158, 158, 158);
- private Color _innerBorder = Color.FromArgb(200, 250, 250, 250);
- [Category("Bar"), DefaultValue(typeof(bool), "true"), Description("滚动条是否启用颜色渐变")]
- public bool BarGlass
- {
- get
- {
- return this.barGlass;
- }
- set
- {
- if (this.barGlass != value)
- {
- this.barGlass = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("控件是否启用颜色渐变")]
- public bool Glass
- {
- get
- {
- return this.glass;
- }
- set
- {
- if (this.glass != value)
- {
- this.glass = value;
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), DefaultValue(typeof(BackStyle), "0"), Description("进度条的图像绘制模式")]
- public BackStyle BarBackStyle
- {
- get
- {
- return this.barBackStyle;
- }
- set
- {
- if (this.barBackStyle != value)
- {
- this.barBackStyle = value;
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), DefaultValue(typeof(Size), "1,1"), Description("自减宽高。")]
- public Size BarMinusSize
- {
- get
- {
- return this.barMinusSize;
- }
- set
- {
- if (this.barMinusSize != value)
- {
- this.barMinusSize = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("是否显示进度百分比")]
- public bool TxtShow
- {
- get
- {
- return this.txtShow;
- }
- set
- {
- if (this.txtShow != value)
- {
- this.txtShow = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(int), "2"), Description("控件圆角大小")]
- public int Radius
- {
- get
- {
- return this.radius;
- }
- set
- {
- if (this.radius != value)
- {
- this.radius = ((value < 1) ? 1 : value);
- this.SetRegion();
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(RoundStyle), "1"), Description("控件圆角样式")]
- public RoundStyle RadiusStyle
- {
- get
- {
- return this.radiusStyle;
- }
- set
- {
- if (this.radiusStyle != value)
- {
- this.radiusStyle = value;
- this.SetRegion();
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), DefaultValue(typeof(int), "2"), Description("进度条圆角大小")]
- public int BarRadius
- {
- get
- {
- return this.barradius;
- }
- set
- {
- if (this.barradius != value)
- {
- this.barradius = ((value < 1) ? 1 : value);
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), DefaultValue(typeof(RoundStyle), "1"), Description("进度条圆角样式")]
- public RoundStyle BarRadiusStyle
- {
- get
- {
- return this.barradiusStyle;
- }
- set
- {
- if (this.barradiusStyle != value)
- {
- this.barradiusStyle = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), Description("控件背景图片")]
- public Image Back
- {
- get
- {
- return this.back;
- }
- set
- {
- if (this.back != value)
- {
- this.back = value;
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), Description("进度条图片")]
- public Image BarBack
- {
- get
- {
- return this.barBack;
- }
- set
- {
- if (this.barBack != value)
- {
- this.barBack = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue("{0:0.0%}")]
- public string FormatString
- {
- get
- {
- return this._formatString;
- }
- set
- {
- if (this._formatString != value)
- {
- this._formatString = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "185, 185, 185")]
- public Color TrackBack
- {
- get
- {
- return this._trackBack;
- }
- set
- {
- if (this._trackBack != value)
- {
- this._trackBack = value;
- base.Invalidate();
- }
- }
- }
- [Category("Bar"), DefaultValue(typeof(Color), "15, 181, 43")]
- public Color TrackFore
- {
- get
- {
- return this._trackFore;
- }
- set
- {
- if (this._trackFore != value)
- {
- this._trackFore = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "158, 158, 158")]
- public Color Border
- {
- get
- {
- return this._border;
- }
- set
- {
- if (this._border != value)
- {
- this._border = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "200, 250, 250, 250")]
- public Color InnerBorder
- {
- get
- {
- return this._innerBorder;
- }
- set
- {
- if (this._innerBorder != value)
- {
- this._innerBorder = value;
- base.Invalidate();
- }
- }
- }
- public new ProgressBarStyle Style
- {
- get
- {
- return base.Style;
- }
- set
- {
- if (base.Style != value)
- {
- base.Style = value;
- if (value == ProgressBarStyle.Marquee)
- {
- if (this._timer != null)
- {
- this._timer.Dispose();
- }
- this._timer = new Timer();
- this._timer.Interval = 10;
- this._timer.Tick += delegate(object sender, EventArgs e)
- {
- this._trackX += (int)Math.Ceiling((double)((float)base.Width / (float)base.MarqueeAnimationSpeed));
- if (this._trackX > base.Width)
- {
- this._trackX = -100;
- }
- base.Invalidate();
- };
- if (!base.DesignMode)
- {
- this._timer.Start();
- return;
- }
- }
- else
- {
- if (this._timer != null)
- {
- this._timer.Dispose();
- this._timer = null;
- }
- }
- }
- }
- }
- [Browsable(true)]
- public override Font Font
- {
- get
- {
- return base.Font;
- }
- set
- {
- base.Font = value;
- }
- }
- public SkinProgressBar()
- {
- this._context = BufferedGraphicsManager.Current;
- this._context.MaximumBuffer = new Size(base.Width + 1, base.Height + 1);
- this._bufferedGraphics = this._context.Allocate(base.CreateGraphics(), new Rectangle(Point.Empty, base.Size));
- this.ForeColor = Color.Red;
- base.ResizeRedraw = true;
- }
- protected override void OnCreateControl()
- {
- base.OnCreateControl();
- this.SetRegion();
- }
- protected override void OnResize(EventArgs e)
- {
- base.OnResize(e);
- this.SetRegion();
- this._context.MaximumBuffer = new Size(base.Width + 1, base.Height + 1);
- if (this._bufferedGraphics != null)
- {
- this._bufferedGraphics.Dispose();
- this._bufferedGraphics = null;
- }
- try
- {
- this._bufferedGraphics = this._context.Allocate(base.CreateGraphics(), new Rectangle(Point.Empty, base.Size));
- }
- catch { }
- }
- protected override void WndProc(ref Message m)
- {
-
- try
- {
- int msg = m.Msg;
- if (msg != 15)
- {
- base.WndProc(ref m);
- return;
- }
- }
- catch {
- base.WndProc(ref m);
- return;
- }
- if (!this._bPainting)
- {
- this._bPainting = true;
- PAINTSTRUCT ps = default(PAINTSTRUCT);
- NativeMethods.BeginPaint(m.HWnd, ref ps);
- try
- {
- this.DrawProgressBar(m.HWnd);
- }
- catch
- {
- }
- NativeMethods.ValidateRect(m.HWnd, ref ps.rcPaint);
- NativeMethods.EndPaint(m.HWnd, ref ps);
- this._bPainting = false;
- m.Result = Result.TRUE;
- return;
- }
- base.WndProc(ref m);
- }
- protected override void Dispose(bool disposing)
- {
- base.Dispose(disposing);
- if (disposing)
- {
- if (this._timer != null)
- {
- this._timer.Dispose();
- this._timer = null;
- }
- if (this._bufferedGraphics != null)
- {
- this._bufferedGraphics.Dispose();
- this._bufferedGraphics = null;
- }
- if (this._context != null)
- {
- this._context = null;
- }
- }
- }
- private void DrawProgressBar(IntPtr hWnd)
- {
- Graphics g = this._bufferedGraphics.Graphics;
- g.Clear(Color.Transparent);
- Rectangle rect = new Rectangle(Point.Empty, base.Size);
- bool bBlock = this.Style != ProgressBarStyle.Marquee || base.DesignMode;
- float basePosition = bBlock ? 0.3f : 0.45f;
- SmoothingModeGraphics sg = new SmoothingModeGraphics(g);
- if (this.Back != null)
- {
- Bitmap btm = new Bitmap(this.Back, base.Size);
- UpdateForm.CreateControlRegion(this, btm, 200);
- g.DrawImage(this.Back, rect);
- }
- else
- {
- RenderHelper.RenderBackgroundInternal(g, rect, this.TrackBack, this.Border, this.InnerBorder, this.RadiusStyle, this.Radius, basePosition, true, this.Glass, LinearGradientMode.Vertical);
- }
- Rectangle trackRect = rect;
- trackRect.Inflate(-this.BarMinusSize.Width, -this.BarMinusSize.Height);
- if (bBlock)
- {
- trackRect.Width = (int)((double)base.Value / (double)(base.Maximum - base.Minimum) * (double)trackRect.Width);
- if (this.BarBack != null)
- {
- if (this.BarBackStyle == BackStyle.Tile)
- {
- using (TextureBrush Txbrus = new TextureBrush(this.BarBack))
- {
- Txbrus.WrapMode = WrapMode.Tile;
- g.FillRectangle(Txbrus, trackRect);
- goto IL_19B;
- }
- }
- Bitmap btm2 = new Bitmap(this.BarBack, base.Size);
- g.DrawImageUnscaledAndClipped(btm2, trackRect);
- }
- else
- {
- RenderHelper.RenderBackgroundInternal(g, trackRect, this.TrackFore, this.Border, this.InnerBorder, this.BarRadiusStyle, this.BarRadius, basePosition, false, this.BarGlass, LinearGradientMode.Vertical);
- }
- IL_19B:
- if (!string.IsNullOrEmpty(this._formatString) && this.TxtShow)
- {
- TextRenderer.DrawText(g, string.Format(this._formatString, (double)base.Value / (double)(base.Maximum - base.Minimum)), base.Font, rect, base.ForeColor, TextFormatFlags.HorizontalCenter | TextFormatFlags.SingleLine | TextFormatFlags.VerticalCenter | TextFormatFlags.WordEllipsis);
- }
- }
- else
- {
- GraphicsState state = g.Save();
- g.SetClip(trackRect);
- trackRect.X = this._trackX;
- trackRect.Width = 100;
- using (GraphicsPath path = new GraphicsPath())
- {
- path.AddEllipse(trackRect);
- g.SetClip(path, CombineMode.Intersect);
- }
- RenderHelper.RenderBackgroundInternal(g, trackRect, this.TrackFore, this.Border, this.InnerBorder, RoundStyle.None, 8, basePosition, false, this.BarGlass, LinearGradientMode.Vertical);
- using (LinearGradientBrush brush = new LinearGradientBrush(trackRect, this.InnerBorder, Color.Transparent, 0f))
- {
- Blend blend = new Blend();
- Blend arg_2A0_0 = blend;
- float[] array = new float[3];
- array[1] = 1f;
- arg_2A0_0.Factors = array;
- blend.Positions = new float[]
- {
- 0f,
- 0.5f,
- 1f
- };
- brush.Blend = blend;
- g.FillRectangle(brush, trackRect);
- }
- g.Restore(state);
- }
- sg.Dispose();
- IntPtr hDC = NativeMethods.GetDC(hWnd);
- this._bufferedGraphics.Render(hDC);
- NativeMethods.ReleaseDC(hWnd, hDC);
- }
- private void SetRegion()
- {
- RegionHelper.CreateRegion(this, new Rectangle(Point.Empty, base.Size), this.Radius, this.RadiusStyle);
- }
- }
- }
|