0
votes

I'd like to be able to create some sort of auto scrolling feature in a ListBox I have, where new data is added periodically to the ListBox. Items populating the ListBox are held in an ObservableCollection, and are always added to the end of the collection. Is there a way to make the ListBox auto scroll to the bottom every time a new item is added to the ObservableCollection and the View is updated?

1
you could use ScrollIntoView() method to achive thisPradeep Kesharwani
Is this supported in Windows Phone 8? I do not see it listed at the bottom of this link msdn.microsoft.com/en-us/library/…Matthew

1 Answers

0
votes
listBox1.SelectedIndex = listBox1.Items.Count - 1;
listBox1.SelectedIndex = -1;