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

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -