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);
        }
Exemplo n.º 2
0
        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);
        }