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
Post a Comment