10 lines
326 B
C#
10 lines
326 B
C#
using System.Collections.ObjectModel;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace CRD.Utils.CustomList;
|
|
|
|
public class RefreshableObservableCollection<T> : ObservableCollection<T>{
|
|
public void Refresh(){
|
|
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
|
|
}
|
|
} |