是否可以通过编程方式禁用Application.EnableVisualStyles();
?我想关闭我的应用程序的某个部分的视觉样式,我可以有一个彩色的进度条。我知道您可以使用System.Drawing
来绘制它,但如果我可以暂时关闭它,这会简单得多。这是可能的还是我必须画它?
答案 0 :(得分:0)
Credits转到GreatJobBob链接我的MSDN页面,以下实现了我的目标。
using System.Windows.Forms.VisualStyles;
Application.VisualStyleState = VisualStyleState.NonClientAreaEnabled;
这让我可以在不更改其余控件和表单的情况下更改进度条的颜色。
答案 1 :(得分:0)
创建自己的进度条类。禁用Application.EnableVisualStyles
将导致其他UI(例如MessageBox)出现问题。这是一个让你入门的基础课程,只需将forecolor更改为你想要的颜色即可。
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 is where you choose your color
this.BackColor = Color.White;
}
public decimal Minimum { get; set; }
public decimal Maximum { get; set; }
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);
}
}