internal async void CopyToCloud(object sender, RoutedEventArgs e)
        {
            await this.EnsureLoggedOn(false /* applySettingsAfterLogin */);

            CapturePanel capturePanel = this.StepFrame.PushPanel <CapturePanel>();

            capturePanel.Completed += (o, args) => this.Completed?.Invoke(this, EventArgs.Empty);
        }
Example #2
0
        private async void CopyToCloud(object sender, RoutedEventArgs e)
        {
            await this.EnsureLoggedOn();

            CapturePanel capturePanel = this.StepFrame.PushPanel <CapturePanel>();

            capturePanel.Completed += (o, args) => this.Completed?.Invoke(this, EventArgs.Empty);
        }