namespace Tester
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void timer1_Tick(object sender, EventArgs e)
{
Do();
}
void Do()
{
if (this.InvokeRequired)
{
this.Invoke(new MethodInvoker(Do));
}
else
{
if (this.vistaProgressBar1.Value >= 100)
this.vistaProgressBar1.Value = 1;
if (this.vistaProgressBar2.Value >= 100)
this.vistaProgressBar2.Value = 1;
if (this.vistaProgressBar3.Value >= 100)
this.vistaProgressBar3.Value = 1;
this.vistaProgressBar1.Value += 0.1F;
this.vistaProgressBar2.Value += 0.1F;
this.vistaProgressBar3.Value += 0.1F;
}
}
}
}
namespace MyUserControl.Controls
{
public partial class VistaProgressBar : UserControl
{
Color _border = Color.FromArgb(178, 178, 178);
Color _backRemain1 = Color.FromArgb(202, 202, 202);
Color _backRemain2 = Color.FromArgb(234, 234, 234);
Color _backRemain3 = Color.FromArgb(219, 219, 219);
Color _backRemain4 = Color.FromArgb(243, 243, 243);
Color _backActive1 = Color.FromArgb(180, 0, 0);
Color _backActive2 = Color.FromArgb(252, 0, 0);
Color _backActive3 = Color.FromArgb(255, 127, 127);
Color _backActive4 = Color.FromArgb(255, 205, 205);
float _value = 50.0F;
public float Value
{
get { return _value; }
set
{
if (_value > 100.0F) _value = 100.0F;
if (_value < 1.0F) _value = 1.0F;
_value = value;
Invalidate();
}
}
VistaProgressBarTheme _theme = VistaProgressBarTheme.Default;
[Browsable(true)]
public VistaProgressBarTheme Theme
{
get { return _theme; }
set
{
_theme = value;
CalculateThems();
Invalidate();
}
}
public VistaProgressBar()
{
this.SetStyle(ControlStyles.DoubleBuffer, true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.ResizeRedraw, true);
this.SetStyle(ControlStyles.UserPaint, true);
this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
InitializeComponent();
this.BackColor = Color.Transparent;
CalculateThems();
}
protected override void OnPaintBackground(PaintEventArgs e)
{
base.OnPaintBackground(e);
Rectangle rectUpper = new Rectangle(0, 0, this.Width, this.Height / 2 + 2);
Rectangle rectLower = new Rectangle(0, this.Height / 2, this.Width, this.Height - (this.Height / 2));
GraphicsPath pathLower = MyGraphics.GetRoundPath(rectLower, 2);
GraphicsPath pathUpper = MyGraphics.GetRoundPath(rectUpper, 2);
using (Brush brushUpper = new LinearGradientBrush(rectUpper, _backRemain4, _backRemain3, LinearGradientMode.Vertical))
{
e.Graphics.FillPath(brushUpper, pathUpper);
}
using (Brush brushLower = new LinearGradientBrush(rectLower, _backRemain1, _backRemain2, LinearGradientMode.Vertical))
{
e.Graphics.FillPath(brushLower, pathLower);
}
}
private void VistaProgressBar_Paint(object sender, PaintEventArgs e)
{
float width = (((float)this.Width - 2) * _value) / 100.0F;
Rectangle rectFull = new Rectangle(0, 0, this.Width - 1, this.Height - 1);
GraphicsPath pathFull = MyGraphics.GetRoundPath(rectFull, 2);
Rectangle rectUpper = new Rectangle(1, 1, (int)width, this.Height / 2 + 1);
GraphicsPath pathUpper = MyGraphics.GetRoundPath(rectUpper, 1);
Rectangle rectLower = new Rectangle(1, this.Height / 2, (int)width, this.Height - (this.Height / 2) - 1);
GraphicsPath pathLower = MyGraphics.GetRoundPath(rectLower, 1);
using (Brush brushUpper = new LinearGradientBrush(rectUpper, _backActive4, _backActive3, LinearGradientMode.Vertical))
{
e.Graphics.FillPath(brushUpper, pathUpper);
}
using (Brush brushLower = new LinearGradientBrush(rectLower, _backActive1, _backActive2, LinearGradientMode.Vertical))
{
e.Graphics.FillPath(brushLower, pathLower);
}
using (Pen pen = new Pen(_border))
{
e.Graphics.DrawPath(pen, pathFull);
}
}
void CalculateThems()
{
switch (_theme)
{
case VistaProgressBarTheme.Red:
_backActive1 = Color.FromArgb(180, 0, 0);
_backActive2 = Color.FromArgb(252, 0, 0);
_backActive3 = Color.FromArgb(255, 127, 127);
_backActive4 = Color.FromArgb(255, 205, 205);
break;
case VistaProgressBarTheme.Default:
case VistaProgressBarTheme.Green:
_backActive1 = Color.FromArgb(12, 182, 20);
_backActive2 = Color.FromArgb(55, 217, 60);
_backActive3 = Color.FromArgb(117, 226, 119);
_backActive4 = Color.FromArgb(171, 237, 171);
break;
case VistaProgressBarTheme.Blue:
_backActive1 = Color.FromArgb(8, 49, 216);
_backActive2 = Color.FromArgb(22, 106, 238);
_backActive3 = Color.FromArgb(102, 171, 255);
_backActive4 = Color.FromArgb(140, 192, 255);
break;
}
}
}
public enum VistaProgressBarTheme
{
Default,
Green,
Blue,
Red,
}
}
namespace MyUserControl.Controls
{
internal class MyGraphics
{
public static GraphicsPath GetRoundPath(Rectangle r, int depth)
{
GraphicsPath graphPath = new GraphicsPath();
graphPath.AddArc(r.X, r.Y, depth, depth, 180, 90);
graphPath.AddArc(r.X + r.Width - depth, r.Y, depth, depth, 270, 90);
graphPath.AddArc(r.X + r.Width - depth, r.Y + r.Height - depth, depth, depth, 0, 90);
graphPath.AddArc(r.X, r.Y + r.Height - depth, depth, depth, 90, 90);
graphPath.AddLine(r.X, r.Y + r.Height - depth, r.X, r.Y + depth / 2);
return graphPath;
}
}
}