Beispiel #1
0
        public override async Task OnNavigatedToAsync(object parameter, NavigationMode mode, IDictionary <string, object> suspensionState)
        {
            if (suspensionState.Any())
            {
                //Value = suspensionState[nameof(Value)]?.ToString();
            }
            await Task.CompletedTask;

            MainVM.PageHeader = Res.GetString("ST_PageHeader");

            await SettingsPartViewModel.LoadDeployFolder();
        }
Beispiel #2
0
 public SettingsPageViewModel(IMyDialogService dlg, IBusyService busy, IAppSettingsService _appSettings, IStorageInterfaceService _storageInterfaceService)
 {
     SettingsPartViewModel = new SettingsPartViewModel(dlg, busy, _appSettings, _storageInterfaceService);
     AboutPartViewModel    = new AboutPartViewModel(dlg, busy);
 }