Exemple #1
0
 public ProfileSettingsViewModel(SettingsController controller)
     : base("PROFILES", controller)
 {
     RemoveProfileCommand = new ReactiveCommand(SelectedProfile.Select(i => i != null), false);
     RemoveProfileCommand.Subscribe(OnRemoveProfile);
     AddProfileCommand.Subscribe(OnAddProfile);
 }