c# - WP8 Listbox takes too much time to render UI for large set of items -


i have large observablecollection containing text data populated listbox itemssource. data fetching fine, listbox rendering takes time, 4-5 seconds. plus, have textbox want filter out listbox itemesource, if text entered in textbox starts item's text using linq.

list<locality> l = collection.findall(locality=>locality.name.tolower().startswith(keywordlocation.text.trim())); 

the filtering takes time in data set , ruining user experience. ideas how decrease rendering time , improve filtering.

solved. missed on few details. virtualizationstackpanel mode set recycling helped in rendering data faster , filtering out content.


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -