Show a ProgressBar While Processing on a Background Thread : ProgressBar « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » ProgressBarScreenshots 
Show a ProgressBar While Processing on a Background Thread
Show a ProgressBar 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" Margin="4"/>
        <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.WorkerReportsProgress = True
      AddHandler worker.DoWork, New DoWorkEventHandler(AddressOf worker_DoWork)
      AddHandler worker.RunWorkerCompleted, New RunWorkerCompletedEventHandler(AddressOf worker_RunWorkerCompleted)
      AddHandler worker.ProgressChanged, AddressOf worker_ProgressChanged
    End Sub

    Private Sub button_Click(sender As Object, e As RoutedEventArgs)
      worker.RunWorkerAsync()
      Me.Cursor = Cursors.Wait
      button.IsEnabled = False
    End Sub

    Private Sub worker_RunWorkerCompleted(sender As Object, e As RunWorkerCompletedEventArgs)
      Me.Cursor = Cursors.Arrow
      If e.[ErrorIsNot Nothing Then
        MessageBox.Show(e.[Error].Message)
      End If
      button.IsEnabled = True
    End Sub
    Private Sub worker_DoWork(sender As Object, e As DoWorkEventArgs)
      For i As Integer = To 100
        Thread.Sleep(100)
        worker.ReportProgress(i)
      Next
    End Sub

    Private Sub worker_ProgressChanged(sender As Object, e As ProgressChangedEventArgs)
      progressBar.Value = e.ProgressPercentage
    End Sub
  End Class
End Namespace

   
    
    
  
Related examples in the same category
1.Indeterminate ProgressBarIndeterminate ProgressBar
2.Create a ProgressBar.Create a ProgressBar.
3.ProgressBar with five iterationsProgressBar with five iterations
4.ProgressBar with infinite iterationsProgressBar with infinite iterations
5.Indeterminate ProgressBarIndeterminate ProgressBar
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.