Crunchy-Downloader/CRD/Utils/CustomList/RefreshableObservableCollec...

10 lines
326 B
C#
Raw Normal View History

2024-05-04 15:35:32 +00:00
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));
}
}