I'm using CollectionViewSource and EntityFramework in my WPF project, and whenever user insert or edit a record, and want to save it, I will find it like this
(MyCVS.View as ListCollectionView).IsAddingNew
Or
(MyCVS.View as ListCollectionView).IsEditingItem
But sometimes user is in a Edit or Insert mode but those property are false
I want to know when and how those properties change to false.
Thanks In Advance