Example #1
0
 private void cmdBackgroundWorker_Click(object sender, RoutedEventArgs e)
 {
     BackgroundWorkerTest test = new BackgroundWorkerTest();
     test.ShowDialog();
 }
Example #2
0
        private void cmdBackgroundWorker_Click(object sender, RoutedEventArgs e)
        {
            BackgroundWorkerTest test = new BackgroundWorkerTest();

            test.ShowDialog();
        }
Example #3
0
        private void OnUseBackgroundWorker(object sender, RoutedEventArgs e)
        {
            var test = new BackgroundWorkerTest();

            test.ShowDialog();
        }