SinglePage erweitert

This commit is contained in:
HuskyTeufel
2021-09-17 13:32:07 +02:00
parent 0f11ce7f0f
commit f2ea55ea34
26 changed files with 268 additions and 70 deletions

View File

@@ -15,9 +15,11 @@ namespace DaSaSo.ViewModel.State.Navigation
get => _currentViewModel;
set
{
_currentViewModel?.Dispose();
_currentViewModel = value;
OnPropertyChanged();
StateChanged?.Invoke();
}
}
public event Action StateChanged;
}
}