使用 CollectionViewSource.GetDefaultView 实例化视图 2 次
我有一个想要显示的 ViewModel。我使用命令:
var CollectionView = CollectionViewSource.GetDefaultView (MyViewModel);
if (CollectionView! = null)
collectionView.MoveCurrentTo (MyViewModel);
问题是它使用同一 ViewModel 实例创建视图的两个实例。
有人知道我的问题吗?
谢谢
I have a ViewModel that I want to display. I use the command:
var CollectionView = CollectionViewSource.GetDefaultView (MyViewModel);
if (CollectionView! = null)
collectionView.MoveCurrentTo (MyViewModel);
The problem is that it create two instance of the view with the same instance of the ViewModel.
Someone has an idea of my problem?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码实际上没有意义...
CollectionViewSource.GetDefaultView
的参数应该是某种集合,但您传递的是 ViewModel。您应该传递包含 ViewModel 的集合。Your code doesn't really make sense... the parameter of
CollectionViewSource.GetDefaultView
is supposed to be some kind of collection, but you're passing a ViewModel. You should pass the collection that contains the ViewModel.