如何确保WPF数据网格的当前项可见?
我有一个 WPF DataGrid,IsSynchronizedWithCurrentItem 设置为 true 并将其绑定到 ObservableCollection。当使用 ICollectionView.MoveCurrentTo* 方法更改当前项目时,DataGrid 会相应地更改其当前项目。
我遇到的问题是,如果当前项目当前不可见,DataGrid 不会将当前项目滚动到视图中。我该如何解决这个问题?
I have a WPF DataGrid with IsSynchronizedWithCurrentItem set to true and binding it to an ObservableCollection. When use a ICollectionView.MoveCurrentTo* method to change the current item the DataGrid changes its current item accordingly.
The problem I'm having is that if the current item is not currently visible the DataGrid does not scroll the current item into view. How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许能够处理
ICollectionView.CurrentChanged
并从中调用DataGrid.ScrollIntoView(object item)
来实现这一点。You might be able to handle
ICollectionView.CurrentChanged
and callDataGrid.ScrollIntoView(object item)
from it to achieve that.