You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To save many code lines and to get more overview in the view model classes it would be a good solution to add the NuGet package PropertyChanged.Fody in the project.
To save many code lines and to get more overview in the view model classes it would be a good solution to add the NuGet package PropertyChanged.Fody in the project.
It implements the OnPropertyChanged() statement to all classes that implement INotifyPropertyChanged. See on GitHub: https://github.com/Fody/PropertyChanged
For example the following code lines in MainViewModel.cs
could then look like this (with same behaviour):
public bool IsFlyoutOpen {get; set;}
The text was updated successfully, but these errors were encountered: