How to perform a search operation on Combobox in windows phone 8.1? -
in windows application having 1 combobox. in combobox showing many number of items (strings) user. want perform search operation on combobox filter data. please 1 hep me how this. please me.
thank in advance.
usw linq search through list of strings:
mycombobox.items = mydata.where(s => s.contains(mykeywordtextbox.text)).tolist();
execute in search buttons click handler.
Comments
Post a Comment