You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mark Smith edited this page Aug 29, 2016
·
1 revision
ObservableDictionary<TKey,TValue>
This class provides an observable IDictionary<TKey, TValue> which can be data bound with Xamarin.Forms. It acts like a regular Dictionary but provides change notifications to any data bound visual. You can provide the backing store through the constructor, or if not supplied, it creates a Dictionary<TKey,TValue>.
Methods
BeginMassUpdate : this method turns off change notification reporting to allow for multiple updates to be performed on the dictionary. The return type is an IDisposable which, when disposed, will turn updates back on.