コード例 #1
0
 private async void WebEdit_Click(object sender, RoutedEventArgs e)
 {
     if (CurrentSelectedItem != null)
     {
         QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.UpdateWeb, CurrentSelectedItem);
         _ = await dialog.ShowAsync();
     }
 }
コード例 #2
0
ファイル: ThisPC.xaml.cs プロジェクト: Ajohnie/RX-Explorer
 private async void AppEdit_Click(object sender, RoutedEventArgs e)
 {
     if (CurrentSelectedItem != null)
     {
         QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.UpdateApp, CurrentSelectedItem);
         _ = await dialog.ShowAsync().ConfigureAwait(true);
     }
 }
コード例 #3
0
 private async void AppEdit_Click(object sender, RoutedEventArgs e)
 {
     if (CurrentSelectedItem != null)
     {
         QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(CurrentSelectedItem);
         await dialog.ShowAsync();
     }
 }
コード例 #4
0
        private async void AddQuickStartApp_Click(object sender, RoutedEventArgs e)
        {
            QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.Application);

            _ = await dialog.ShowAsync();
        }
コード例 #5
0
ファイル: ThisPC.xaml.cs プロジェクト: Ajohnie/RX-Explorer
        private async void AddQuickStartWeb_Click(object sender, RoutedEventArgs e)
        {
            QuickStartModifiedDialog dialog = new QuickStartModifiedDialog(QuickStartType.WebSite);

            _ = await dialog.ShowAsync().ConfigureAwait(true);
        }