I am using DataGrid from the WPF Toolkit and I need to be able to maintain focus on the bottom of the grid (i.e. the last row). The problem I’m having right now is that as rows are added the scrollbar for the DataGrid doesn’t scroll along with the new rows being added. What’s the best way to accomplish this?
I am using DataGrid from the WPF Toolkit and I need to be able
Share
Looks like
DataGrid.ScrollIntoView(<item>)will keep the focus on the bottom of theDataGrid.