Show a Continuous Progress Bar While Processing on a Background Thread : Thread « Windows Presentation Foundation « VB.Net






Show a Continuous Progress Bar While Processing on a Background Thread

Show a Continuous Progress Bar While Processing on a Background 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" Height="100" Width="200">
    <StackPanel>
        <ProgressBar Name="progressBar"/>
        <Button Name="button" Click="button_Click">Start</Button>
    </StackPanel>
</Window>
//File:Window.xaml.vb
Imports System.ComponentModel
Imports System.Threading
Imports System.Windows
Imports System.Windows.Input

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Private worker As New BackgroundWorker()

    Public Sub New()
      InitializeComponent()
      worker.WorkerSupportsCancellation = True
      AddHandler worker.DoWork, New DoWorkEventHandler(AddressOf worker_DoWork)
      AddHandler worker.RunWorkerCompleted, New RunWorkerCompletedEventHandler(AddressOf worker_RunWorkerCompleted)
    End Sub

    Private Sub button_Click(sender As Object, e As RoutedEventArgs)
      If Not worker.IsBusy Then
        Me.Cursor = Cursors.Wait
        progressBar.IsIndeterminate = True
        button.Content = "Cancel"
        worker.RunWorkerAsync()
      Else
        worker.CancelAsync()
      End If
    End Sub

    Private Sub worker_RunWorkerCompleted(sender As Object, e As RunWorkerCompletedEventArgs)
      Me.Cursor = Cursors.Arrow

      If e.[Error] IsNot Nothing Then
        MessageBox.Show(e.[Error].Message)
      End If

      button.Content = "Start"
      progressBar.IsIndeterminate = False
    End Sub

    Private Sub worker_DoWork(sender As Object, e As DoWorkEventArgs)
      For i As Integer = 1 To 100
        If worker.CancellationPending Then
          Exit For
        End If

        Thread.Sleep(50)
      Next
    End Sub
  End Class
End Namespace

   
    
    
    
  








Related examples in the same category

1.Create a multi threaded web browsing application.
2.Show a Continuous Animation During an Asynchronous ProcessShow a Continuous Animation During an Asynchronous Process
3.Load the Data for a Window Asynchronously After It Has RenderedLoad the Data for a Window Asynchronously After It Has Rendered
4.Check Whether You Are Running on the UI ThreadCheck Whether You Are Running on the UI Thread
5.Ensure That You Are Running on the UI ThreadEnsure That You Are Running on the UI Thread
6.A Cancellable ProgressBar While Processing on a Background ThreadA Cancellable ProgressBar While Processing on a Background Thread
7.Execute a Method Asynchronously Using the Dispatcher QueueExecute a Method Asynchronously Using the Dispatcher Queue
8.Thread Sleep in Button Click handlerThread Sleep in Button Click handler
9.Execute a Method Asynchronously Using a Background Worker ThreadExecute a Method Asynchronously Using a Background Worker Thread
10.Track the Progress of a Background Worker ThreadTrack the Progress of a Background Worker Thread
11.Support the Cancellation of a Background Worker ThreadSupport the Cancellation of a Background Worker Thread
12.Create a Background Worker Thread in XAMLCreate a Background Worker Thread in XAML
13.WPF ThreadingWPF Threading
14.BlockThread.xamlBlockThread.xaml
15.Keep the UI from becoming non-responsive in single threaded application which performs a long operation.Keep the UI from becoming non-responsive in single threaded application which performs a long operation.