Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Colored progressbar

I was using a program made in C# and came across these progress bars, one of which is blue.

Here's a picture of the progress bars in question:

http://imgur.com/xAwA4

The forecolor property obviously doesn't do anything, so does anyone know how to do this?

Thanks

like image 322
kojak Avatar asked Dec 27 '22 20:12

kojak


2 Answers

If its a winform application then do the following step

In Program.cs comment out the line

Application.EnableVisualStyles();

In code behind:

ProgressBar1.ForeColor = Color.Blue;
ProgressBar1.Style = ProgressBarStyle.Continuous;
like image 123
Habib Avatar answered Jan 11 '23 08:01

Habib


Disabling Visual styles as Habib suggested will work, But if you application relies on visual styles to look nicer, You will have to use a custom progress bar.

Color Progress Bar - CodeProdject

TerrariViewer uses Wpf as I understand, and if your willing to use that, this is a possibility

Progressbar foreground color

like image 39
Cyral Avatar answered Jan 11 '23 09:01

Cyral