Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4970
how to refresh xamgrid when itemsource changed?
posted

XamGrid is bound to PagedCollectionView like:

ItemsSource="{Binding DataList,Mode=TwoWay}"

Then In code I remove the one row from DataList like:

DataList.Remove(MyObjectInDataList);

but the UI still has no change. The removed line still there.  I need to reload the whole SL app, then the removed line is gone.

How to make UI sync with its ItemSource?