
This is a control which mimics the Task Manager Memory Usage Control. You know, if you open the Task Manager in Windows 2000, you can see an indicator which displays the memory usage in green. Well, the Inticator is such a control.
Why the name Inticator? Inticator is a contraction of Int32 and Indicator. I don't like the name that much, but couldn't find anything better.
Inticator _Inticator4 = new Inticator();
...
_Inticator4.BackColor = Color.Black;
_Inticator4.Top = 100;
_Inticator4.Left = 10;
_Inticator4.Width = 100;
_Inticator4.GraphWidth = 4;
_Inticator4.Height = 120;
_Inticator4.ForeColor = Color.FromArgb(255,0,0);
_Inticator4.Minimum = 10;
_Inticator4.Maximum = 20;
_Inticator4.Value = 15;
_Inticator4.Text = "15 MB";
...
That's it! Very easy to use indeed!
| You must Sign In to use this message board. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||