This commit is contained in:
shinichi
2020-10-07 15:49:57 +02:00
parent 6159f3f57b
commit d7dfe32cc3
5 changed files with 35 additions and 8 deletions

View File

@@ -7,12 +7,11 @@ namespace ClientApp.ViewModels
{
class MainViewModel : ObservableObject
{
public ObservableObject SelectedViewModel { get; set; }
public string StatusLabelText { get; set; }
public MainViewModel()
{
SelectedViewModel = new LoginViewModel();
StatusLabelText = "Status: not running";
}
}
}