Exemplo n.º 1
0
        private ConfigurationSettingsViewModel()
        {
            SearchModel = new ConfigurationSearchModel();
            Settings    = new ObservableRangeCollection <ConfigurationModel>();
            LoadConfigurations(true);

            ResetCommand       = new BaseCommand(Reset);
            FindCommand        = new BaseCommand(Find);
            ClosePopupCommand  = new BaseCommand(ClosePopup);
            UpdateCommand      = new BaseCommand(Update);
            RowSelectedCommand = new BaseCommand(RowSelected);
        }
Exemplo n.º 2
0
 private void Reset()
 {
     SearchModel = new ConfigurationSearchModel();
     LoadConfigurations(true);
 }