Crunchy-Downloader/CRD/Utils/CustomList/RefreshableObservableCollection.cs
2024-05-04 17:43:31 +02:00

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));
}
}