vote up 1 vote down star

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. It ends up as selected but still not visible unless you manually scroll to it.

flag

1 Answer

vote up 2 vote down

Use the ListBox's ScrollIntoView method passing in the last item. You may need to call UpdateLayout immediately before it for it to work.

link|flag
This is exactly the answer I was looking for except... I can't get it to work. It seems like this should work... If lst.Items.Count > 0 Then lst.SelectedIndex = lst.Items.Count - 1 lst.ScrollIntoView(lst.SelectedItem) lst.UpdateLayout() Else The last item is selected but not in view. – Joe Griffith Jun 1 at 17:00
Call UpdateLayout BEFORE ScrollIntoView, hopefully that will work for you. – Bill Reiss Jun 3 at 1:04
That did the trick. Works exactly as I wanted now. Thank you. – Joe Griffith Jun 3 at 17:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.