Add Last Download column to grid (rmcrackan/Libation#498)

This commit is contained in:
Mbucari 2023-03-02 17:02:27 -07:00
parent bd7e45ca3c
commit d94759d868
12 changed files with 133 additions and 2 deletions

View file

@ -12,6 +12,6 @@ namespace LibationWinForms.GridView
// per standard INotifyPropertyChanged pattern:
// https://docs.microsoft.com/en-us/dotnet/desktop/wpf/data/how-to-implement-property-change-notification
public void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
=> this.UIThreadAsync(() => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)));
=> this.UIThreadSync(() => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)));
}
}