Goal: I want to
get list of RadialGauge Control those
exists on the form,and want to assign values in Loop.
I have created a list of RadialGauge Control, i can see name of all
Controls Gauges exists on Form,But Can Not assign value to it.because
intellisense dont show GaugeControl[i].Value option it shows .Text option.
List<Control> GaugeControl = panelGaugeControl.Controls.OfType<RadialGauge>().Cast<Control>().ToList();
for (int i = 0; i < GaugeControl.Count; i++)
{
string GaugeControlName = GaugeControl[0].Name;
GaugeControl[i].Text = 20;
}