Nice video but I seem to have a mini problem. My Collection is Title Case (the video is as well). And the search bar is case sensitive and I don't want that example of my problem is at 6:18 in your video were you seem to have the same problem edit for future people having same problem: simple add this 3 lines of code to SearchBar_TextChanged string data = searchBar.Text; TextInfo myTI = new CultureInfo("en-US", false).TextInfo; searchBar.Text = myTI.ToTitleCase(data); //var filterlist should be here using System.Globalization; will also be required
Thanks, Nice video... Clearly could be understandable. One more request selection image and view the full image on the next page.. How to write code for this.
🔔If you like the video, give this video a thumbs up and consider subscribing, and hit the bell button to keep you updated. Thanks! Keep Safe!
This series is so helpful. Thank you again!
You're very welcome!
Nice video, clear and concise and easy to follow. You have a new subscriber 😁
Excelente video, gracias por compartirlo.
Thanks!
Thanks!
Welcome!
Nice video but I seem to have a mini problem.
My Collection is Title Case (the video is as well). And the search bar is case sensitive and I don't want that
example of my problem is at 6:18 in your video were you seem to have the same problem
edit for future people having same problem:
simple add this 3 lines of code to SearchBar_TextChanged
string data = searchBar.Text;
TextInfo myTI = new CultureInfo("en-US", false).TextInfo;
searchBar.Text = myTI.ToTitleCase(data);
//var filterlist should be here
using System.Globalization; will also be required
Thanks, Nice video... Clearly could be understandable. One more request selection image and view the full image on the next page.. How to write code for this.