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 -

php - Cannot override Laravel Spark authentication with own implementation -

What is happening when Matlab is starting a "parallel pool"? -