Support the Cancellation of a Background Worker Thread : BackgroundWorker « Windows Presentation Foundation « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Windows Presentation Foundation » BackgroundWorkerScreenshots 
Support the Cancellation of a Background Worker Thread
Support the Cancellation of a Background Worker Thread
  

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Width="230" Height="148" >
    <StackPanel>
        <Button Click="StartStop_Click" Name="btnStartStop" Height="34">Start</Button>
        <TextBlock Name="txtBiggestPrime" Margin="5" />
    </StackPanel>
</Window>
//File:Window.xaml.cs

using System;
using System.ComponentModel;
using System.Windows;


namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        private BackgroundWorker worker = new BackgroundWorker();

        private long from 2;
        private long to = 2000;
        private long biggestPrime;

        public Window1(): base()
        {
            InitializeComponent();
            worker.WorkerSupportsCancellation = true;
            worker.DoWork += new DoWorkEventHandler(worker_DoWork);
            worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker_RunWorkerCompleted);
        }
        private void StartStop_Click(object sender, RoutedEventArgs e)
        {
            if(!worker.IsBusy)
            {
                worker.RunWorkerAsync();
                btnStartStop.Content = "Cancel";
                txtBiggestPrime.Text = string.Empty;
            }
            else
            {
                worker.CancelAsync();
            }
        }

        private void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
        {
            if(e.Cancelled)
            {
                MessageBox.Show("Operation was canceled");
            }

            btnStartStop.Content = "Start";
            txtBiggestPrime.Text = biggestPrime.ToString();
        }

        private void worker_DoWork(object sender, DoWorkEventArgs e)
        {
            for(long current = from; current <= to; current++)
            {
                if(worker.CancellationPending)
                {
                    e.Cancel = true;
                    return;
                }
                biggestPrime = current;
            }
        }
    }
}

   
    
  
Related examples in the same category
1.Execute a Method Asynchronously Using a Background Worker ThreadExecute a Method Asynchronously Using a Background Worker Thread
2.Track the Progress of a Background Worker ThreadTrack the Progress of a Background Worker Thread
3.Create a Background Worker Thread in XAMLCreate a Background Worker Thread in XAML
4.Show a ProgressBar While Processing on a Background ThreadShow a ProgressBar While Processing on a Background Thread
5.Use BackgroundWorker to run task at backgroundUse BackgroundWorker to run task at background
6.A Cancellable ProgressBar While Processing on a Background ThreadA Cancellable ProgressBar While Processing on a Background Thread
7.Show a Continuous Progress Bar While Processing on a Background ThreadShow a Continuous Progress Bar While Processing on a Background Thread
8.Using a BackgroundWorker: progress changed and completedUsing a BackgroundWorker: progress changed and completed
9.Unblock Thread with BackgroundWorkerUnblock Thread with BackgroundWorker
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.