I have a listbox in my application which loads a lot of objects, so I use async binding to its ItemsSource property not to block the UI.
My probleem is that I would like to scroll to the selected item when the ItemsSource, so the async binding, is loaded (with ListView.ScrollIntoView() method).
Do anyone know a solution for this? Or which event of the ListView should I use that occurs the right time for this purpose?