Update item in BindableCollection with notify ICollectionView
问题 Hi I bind collection from Caliburn Micro on ListBox control in view. Here is it. public BindableCollection<UserInfo> Friends { get { return _friends; } set { _friends = value; NotifyOfPropertyChange(() => Friends); } } ListBox items is type of UserInfo. Hi I sort and group listbox items, I use CollectioView on this purpose. When I initialize ListBox I sort and group items with this method. private ICollectionView _currentView; //... private void SortContactList() { _currentView =