internal async void CopyFromCloud(object sender, RoutedEventArgs e) { await this.EnsureLoggedOn(false /* applySettingsAfterLogin */); ApplyPanel applyPanel = this.StepFrame.PushPanel <ApplyPanel>(); applyPanel.Completed += (o, args) => this.Completed?.Invoke(this, EventArgs.Empty); }
private async void CopyFromCloud(object sender, RoutedEventArgs e) { await this.EnsureLoggedOn(); ApplyPanel applyPanel = this.StepFrame.PushPanel <ApplyPanel>(); applyPanel.Completed += (o, args) => this.Completed?.Invoke(this, EventArgs.Empty); }