private void GetSettings(object obj)
 {
     Views.Settings winSettings = new Views.Settings {
         Owner = App.Current.Windows[0]
     };
     winSettings.Show();
 }
        private void onConfigCommand(IUICommand command)
        {
            var loader = Mvx.Resolve<IMvxViewModelLoader>();
            var vm = loader.LoadViewModel(MvxViewModelRequest<SettingsViewModel>.GetDefaultRequest(), null);
            var configurationPanel = new Views.Settings(vm);
            configurationPanel.Show();

        }
        private void onConfigCommand(IUICommand command)
        {
            var loader             = Mvx.Resolve <IMvxViewModelLoader>();
            var vm                 = loader.LoadViewModel(MvxViewModelRequest <SettingsViewModel> .GetDefaultRequest(), null);
            var configurationPanel = new Views.Settings(vm);

            configurationPanel.Show();
        }
Example #4
0
 private void Settings()
 {
     Views.Settings setting = new Views.Settings();
     setting.Show();
 }
Example #5
0
 private void Settings()
 {
     Views.Settings setting = new Views.Settings();
     setting.Show();
 }