Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oscillating horizontal green glow whilst something is loading c#

When loading something such as a software update in Windows 7 there is often an oscillating green glow effect in a horizontal bar. Is this a standard control that can be utilized in C#? If not, how can it be incorporated into a C# app.?

like image 836
Andy Avatar asked Oct 09 '22 12:10

Andy


1 Answers

This control is called ProgressBar.

If you are using WPF the property IsIndeterminate has to be set to true to have a "running green glow".

like image 84
Fischermaen Avatar answered Oct 13 '22 12:10

Fischermaen