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
Use the ListBox's ScrollIntoView method passing in the last item. You may need to call UpdateLayout immediately before it for it to work.