OnPropertyChanged nicht überschreiben

Sonst aktualisiert es die Daten nicht mehr
This commit is contained in:
2024-08-26 19:56:42 +02:00
parent acd7cc602c
commit e6408ddc1d

View File

@@ -75,9 +75,9 @@ namespace Jugenddienst_Stunden.ViewModels {
} }
protected void OnPropertyChanged(string propertyName) { //protected void OnPropertyChanged(string propertyName) {
//PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); // PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
} //}
//public async Task LoadData() => //public async Task LoadData() =>
// await Models.Stunde.LoadData(); // await Models.Stunde.LoadData();
@@ -97,7 +97,7 @@ namespace Jugenddienst_Stunden.ViewModels {
OnPropertyChanged(nameof(ZeitDone)); OnPropertyChanged(nameof(ZeitDone));
OnPropertyChanged(nameof(Hours)); OnPropertyChanged(nameof(Hours));
OnPropertyChanged(nameof(Title)); OnPropertyChanged(nameof(Title));
OnPropertyChanged(nameof(ZeitTotalDaily)); //OnPropertyChanged(nameof(ZeitTotalDaily));
} }