MetroFramework icon indicating copy to clipboard operation
MetroFramework copied to clipboard

How to select all MetroComboBox in my form?

Open rlapuz94 opened this issue 8 years ago • 0 comments

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

rlapuz94 avatar Feb 27 '17 23:02 rlapuz94