c# - How can I filter a settings datasource according to their types? -


i've created databinding fill combobox of mine in c# using settings file. however, limit results of settings returned in combobox particular type of settings (e.g. system.guid), instead of getting of them. how do this?

here's got (obviously..):

        combobox.displaymember = "name";         bindingsource source = new bindingsource();         source.datasource = toolsettings.default.properties;         combobox.datasource = source; 

many piece of advice in advance!!


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -