public void Reset()
 {
     StartScreen = new StartScreenViewModel();
     StartScreen.SetOptions(this);
     this.OptionPanes = new List <object> {
         new OptionsCategory(StartScreen),
     };
     this.SelectedOptionPane = OptionPanes.First();
 }
 public EasyCommand(OptionsViewModel options, StartScreenViewModel StartScreen)
 {
     this.Options     = options;
     this.StartScreen = StartScreen;
 }