I have a WPF ListBox that is set to scroll horizontally. The ItemsSource is bound to an ObservableCollection in my ViewModel class. Every time a new item is added, I want the ListBox to scroll to the right so that the new item is viewable.
The ListBox is defined in a DataTemplate, so I am unable to access the ListBox by name in my code behind file.
How can I get a ListBox to always scroll to show a latest added item?
I would like a way to know when the ListBox has a new item added to it, but I do not see an event that does this.
I found a much simpler way which helped me with a similar problem, just a couple of lines of code behind, no need to create custom Behaviors. Check my answer to this question (and follow the link within):
wpf(C#) DataGrid ScrollIntoView - how to scroll to the first row that is not shown?
It works for ListBox, ListView and DataGrid.
solution for Datagrid (the same for ListBox, only substitute DataGrid with ListBox class)
The most straight-forward way i've found to do this, especially for listbox (or listview) that is bound to a data source is to hook it up with the collection change event. You can do this very easily at DataContextChanged event of the listbox:
This is actually just a combination of all the other answers i've found. I feel that this is such a trivial feature that we should not need to spend so much time (and lines of code) doing.
If only there was an Autoscroll = true property. Sigh.
You can extend the behavior of the ListBox by using attached properties. In your case I would define an attached property called
ScrollOnNewItem
that when set totrue
hooks into theINotifyCollectionChanged
events of the list box items source and upon detecting a new item, scrolls the list box to it.Example:
Usage:
UPDATE As per Andrej's suggestion in the comments below, I added hooks to detect a change in the
ItemsSource
of theListBox
.I found an really slick way to do this, simply update the listbox scrollViewer and set position to the bottom. Call this function in one of the ListBox Events like SelectionChanged for example.