internal void Activate(FileSavePickerActivatedEventArgs args) { fileSavePickerUI = args.FileSavePickerUI; Window.Current.Content = this; this.OnNavigatedTo(null); Window.Current.Activate(); }
protected void OnFilePickerActivated(FileSavePickerActivatedEventArgs args) { App.FilePickerArgs = args; var page = new MainPage(); Window.Current.Content = page; Window.Current.Activate(); page.SetView(ViewType.FilePicker); }
protected override async void OnFileSavePickerActivated(FileSavePickerActivatedEventArgs args) { await InternalActivatedAsync(args); }
protected override void OnFileSavePickerActivated(FileSavePickerActivatedEventArgs args) { var FileSavePickerPage = new SDKTemplate.FileSavePickerPage(); FileSavePickerPage.Activate(args); }
protected override void OnFileSavePickerActivated(FileSavePickerActivatedEventArgs args) { base.OnFileSavePickerActivated(args); Activate(args); }
protected virtual Task OnFileSavePickerStartAsync(FileSavePickerActivatedEventArgs args, AppStartInfo info) { return Task.FromResult<object>(null); }
protected override sealed async void OnFileSavePickerActivated(FileSavePickerActivatedEventArgs args) { AppStartInfo info = AppStartInfo.Default; await this.OnPreStartAsync(args, info); await this.OnFileSavePickerStartAsync(args, info); this.InternalStartAsync(args, info); }
protected sealed override async void OnFileSavePickerActivated(FileSavePickerActivatedEventArgs args) { await Activated(args); }
protected override void OnFileSavePickerActivated(Windows.ApplicationModel.Activation.FileSavePickerActivatedEventArgs args) { var fileSavePickerPage = new FileSavePickerPage(); fileSavePickerPage.Activate(args); }