MetroFramework
MetroFramework copied to clipboard
How to select all MetroComboBox in my form?
Hi,
just wondering how to select all MetroComboBox inside my form. I normally do this method on a normal Form (without metroform):
foreach (Control c in Controls)
{
if (c is ComboBox)
counter++;
}
I want to get a number of MetroComboBox in my form. Please help