Einstellungen zu den norm, wird design angezeigt

This commit is contained in:
2023-04-20 21:33:57 +02:00
parent bcbda7622c
commit 7fd87cff09
12 changed files with 227 additions and 13 deletions

View File

@@ -12,6 +12,8 @@ namespace StammGenerator.ViewModel
private readonly IDataService<Projekt> _dataService;
private readonly IRenavigator _renavigator;
public ProjektSettingsViewModel ProjektSettingsViewModel { get; set; }
public ICommand Speichern { get; set; }
public string ProjektName
{
@@ -71,6 +73,7 @@ namespace StammGenerator.ViewModel
_model = new Projekt();
Speichern = new RelayCommand((x) => this.SaveProject());
this.ProjektSettingsViewModel = new ProjektSettingsViewModel();
LoadProjekt();
}