private async void WebEdit_Click(object sender, RoutedEventArgs e) { if (CurrentSelectedItem != null) { QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.UpdateWeb, CurrentSelectedItem); _ = await dialog.ShowAsync(); } }
private async void AppEdit_Click(object sender, RoutedEventArgs e) { if (CurrentSelectedItem != null) { QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.UpdateApp, CurrentSelectedItem); _ = await dialog.ShowAsync().ConfigureAwait(true); } }
private async void AppEdit_Click(object sender, RoutedEventArgs e) { if (CurrentSelectedItem != null) { QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(CurrentSelectedItem); await dialog.ShowAsync(); } }
private async void AddQuickStartApp_Click(object sender, RoutedEventArgs e) { QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.Application); _ = await dialog.ShowAsync(); }
private async void AddQuickStartWeb_Click(object sender, RoutedEventArgs e) { QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.WebSite); _ = await dialog.ShowAsync().ConfigureAwait(true); }