如何在不使用后面的代码的情况下滚动到WPF工具包DataGrid并选择底行?
对于上下文,当用户想要向表中添加新行时,我不希望他们必须滚动数百行才能到达底部。
答案 0 :(得分:2)
您可以使用DataGrid.ScrollIntoView()方法
检查以下链接
WPF DataGrid - How to stay focused on the bottom of the DataGrid as new rows are added?
How to autoscroll on WPF datagrid
http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/f651812c-95db-436e-a98e-d5eeccb779e5/
答案 1 :(得分:0)
这将滚动/聚焦到网格底部
dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.RowCount-1;