溜溜球专家!我的 Windowsform(不是 WPF)上有几个进度条,我想为每个进度条使用不同的颜色。我怎样才能做到这一点?我用谷歌搜索,发现我必须创建自己的控件。但我不知道该怎么做。任何想法?例如 progressBar1 绿色,progressbar2 红色。
编辑:哦,我想解决这个问题,而不删除 Application.EnableVisualStyles();行,因为它会搞砸我的表格查找:/
是的,创建你自己的。一个粗略的草稿,让你达到 80%,根据需要进行修饰:
using System;
using System.Drawing;
using System.Windows.Forms;
class MyProgressBar : Control {
public MyProgressBar() {
this.SetStyle(ControlStyles.ResizeRedraw, true);
this.SetStyle(ControlStyles.Selectable, false);
Maximum = 100;
this.ForeColor = Color.Red;
this.BackColor = Color.White;
}
public decimal Minimum { get; set; } // fix: call Invalidate in setter
public decimal Maximum { get; set; } // fix as above
private decimal mValue;
public decimal Value {
get { return mValue; }
set { mValue = value; Invalidate(); }
}
protected override void OnPaint(PaintEventArgs e) {
var rc = new RectangleF(0, 0, (float)(this.Width * (Value - Minimum) / Maximum), this.Height);
using (var br = new SolidBrush(this.ForeColor)) {
e.Graphics.FillRectangle(br, rc);
}
base.OnPaint(e);
}
}
我是一名优秀的程序员,十分优秀!