mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
Some cleanup
This commit is contained in:
@@ -24,7 +24,7 @@ public class CheckedListItem<T> : INotifyPropertyChanged
|
||||
{
|
||||
_item = value;
|
||||
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Item"));
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Item)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ public class CheckedListItem<T> : INotifyPropertyChanged
|
||||
{
|
||||
_isChecked = value;
|
||||
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("IsChecked"));
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(IsChecked)));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user