mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
10 lines
No EOL
326 B
C#
10 lines
No EOL
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));
|
|
}
|
|
} |