How can I programmatically force a silverlight list box to scroll to the bottom so that the last item added is always visible.
I\'ve tried simply selecting the item
Slightly refactored to reduce the lines of code:
listBoxEvents.Add(item) listBoxEvents.UpdateLayout() listBoxEvents.ScrollIntoView(listBoxEvents.Items(listBoxEvents.Items.Count - 1))