how can i search and filter close string in listview.
for example i have two column in my listview and both are bindable.
let say the first column named bindlname and second column name as “bindfname“
for example this is my listview record:

now if ever i type “Y and hit search button. it will filter YU ZIQ and FEAGS YAPSLE
all first letter in lastname and firstname that starts with letter “Y” will be filtered… another if every i will type “UY” it will display UY QILUZ and UY ZKAE
You can use
ICollectionViewto binding your data toListViewand when you press the button you can filter this data.Sample code:
XAML file:
Here is complete example (ListViewSearch.zip).