如何确保WPF数据网格的当前项可见?

发布于 2024-10-15 07:00:31 字数 221 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盗心人 2024-10-22 07:00:31

您也许能够处理ICollectionView.CurrentChanged并从中调用DataGrid.ScrollIntoView(object item)来实现这一点。

You might be able to handle ICollectionView.CurrentChanged and call DataGrid.ScrollIntoView(object item) from it to achieve that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文