CollectionViewSource CurrentChanged 未触发
我想知道我是否做错了什么?我的 CurrentChanged 似乎没有触发。它仅在应用程序启动时触发
ListItems = new ObservableCollection<string>();
ListItems.Add("hello");
ListItems.Add("world");
ListItems.Add("foo");
ListItems.Add("bar");
ListItems.Add("baz");
viewSource = CollectionViewSource.GetDefaultView(ListItems);
viewSource.CurrentChanged += (o, e) =>
{
MessageBox.Show((string)viewSource.CurrentItem);
};
I wonder if I am doing something wrong? My CurrentChanged does not seem to trigger. It only triggers on application start
ListItems = new ObservableCollection<string>();
ListItems.Add("hello");
ListItems.Add("world");
ListItems.Add("foo");
ListItems.Add("bar");
ListItems.Add("baz");
viewSource = CollectionViewSource.GetDefaultView(ListItems);
viewSource.CurrentChanged += (o, e) =>
{
MessageBox.Show((string)viewSource.CurrentItem);
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哦我发现问题了。我必须设置
IsSynchronizedWithCurrentItem="True"
Oh I found out the problem. I must set
IsSynchronizedWithCurrentItem="True"