Update the UI Asynchronously on a Timer : Timer « Windows Presentation Foundation « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows Presentation Foundation » Timer 
16.116.1.Update the UI Asynchronously on a Timer
<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="300">
    <StackPanel>
        <Button x:Name="button" Click="Button_Click">Start Timer</Button>
        <TextBlock x:Name="txtStatus">
        </TextBlock>
    </StackPanel>
</Window>

//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Threading

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Private timer As DispatcherTimer

    Public Sub New()
      InitializeComponent()
    End Sub

    Private Sub Button_Click(sender As Object, e As RoutedEventArgs)
      If timer Is Nothing OrElse Not timer.IsEnabled Then
        timer = New DispatcherTimer()

        timer.Interval = TimeSpan.FromMilliseconds(1000)
        AddHandler timer.Tick, New EventHandler(AddressOf timer_Tick)

        timer.Start()
        button.Content = "Stop Timer"
      Else
        timer.[Stop]()
        button.Content = "Start Timer"
      End If
    End Sub

    Private Sub timer_Tick(sender As Object, e As EventArgs)
      txtStatus.Text = DateTime.Now.Second.ToString()
    End Sub
  End Class
End Namespace
WPF Update The U I Asynchronously On A Timer
16.116.Timer
16.116.1.Update the UI Asynchronously on a TimerUpdate the UI Asynchronously on a Timer
16.116.2.Using a DispatcherTimerUsing a DispatcherTimer
16.116.3.DispatcherTimer set upDispatcherTimer set up
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.