"Danger meter" control?
-
I'm looking for a Windows Forms control that acts as a sort of "danger meter." Basically a ProgressBar that gradiates from green (when the "progress" is low) to red (when high). But basically I just can't find the right keywords; everything I search for gives me a totally different type of control. Any ideas?
-Domenic Denicola- [CPUA 0x1337] “I was born human. But this was an accident of fate—a condition merely of time and place. I believe it's something we have the power to change…”
-
I'm looking for a Windows Forms control that acts as a sort of "danger meter." Basically a ProgressBar that gradiates from green (when the "progress" is low) to red (when high). But basically I just can't find the right keywords; everything I search for gives me a totally different type of control. Any ideas?
-Domenic Denicola- [CPUA 0x1337] “I was born human. But this was an accident of fate—a condition merely of time and place. I believe it's something we have the power to change…”
http://www.codeproject.com/cs/miscctrl/#Progress+controls
When you get mad...THINK twice that the only advice Tamimi - Code
-
I'm looking for a Windows Forms control that acts as a sort of "danger meter." Basically a ProgressBar that gradiates from green (when the "progress" is low) to red (when high). But basically I just can't find the right keywords; everything I search for gives me a totally different type of control. Any ideas?
-Domenic Denicola- [CPUA 0x1337] “I was born human. But this was an accident of fate—a condition merely of time and place. I believe it's something we have the power to change…”
Check out http://www.codeproject.com/cs/system/CpuUsage.asp[^] This is a control which monitors CPU usage and shows a progress bar accordignly - like the Task Manager thing. I'm sure you can adapt the code to be able to monitor whatever you need - changing the color of the control depending on a particular level should be pretty easy....