Thread Sleep in Button Click handler : Thread « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="EightBall.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Eight Ball Answer" Height="328" Width="412" >
  <Grid>
    <Grid.RowDefinitions>
      <RowDefinition Height="*" />
      <RowDefinition Height="Auto" />
      <RowDefinition Height="*" />
    </Grid.RowDefinitions>
    <Grid.Background>
      <LinearGradientBrush>
        <LinearGradientBrush.GradientStops>
          <GradientStop Offset="0.00"  Color="Red" />
          <GradientStop Offset="0.50" Color="Indigo" />
          <GradientStop Offset="1.00" Color="Violet" />
        </LinearGradientBrush.GradientStops>
      </LinearGradientBrush>
    </Grid.Background>
    <TextBox VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="10,10,13,10" Name="txtQuestion" 
             TextWrapping="Wrap" FontFamily="Verdana" FontSize="24"
             Grid.Row="0" >
      text
    </TextBox>
    <Button VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,0,0,20" Width="127" Height="23" Name="cmdAnswer"
            Click="cmdAnswer_Click" 
            Grid.Row="1">      
      Click
      </Button>
    <TextBox VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="10,10,13,10" Name="txtAnswer" 
             TextWrapping="Wrap" IsReadOnly="True" FontFamily="Verdana" FontSize="24" Foreground="Green"
             Grid.Row="2">
      text
    </TextBox>    
  </Grid>
</Window>

//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes
Imports System.Windows.Input

Namespace EightBall
  Public Partial Class Window1
    Inherits Window

    Public Sub New()
      InitializeComponent()
    End Sub

    Private Sub cmdAnswer_Click(sender As Object, e As RoutedEventArgs)
      Me.Cursor = Cursors.Wait
      System.Threading.Thread.Sleep(TimeSpan.FromSeconds(1))

      txtAnswer.Text = "asdf"
      Me.Cursor = Nothing
    End Sub

  End Class
End Namespace
WPF Thread Sleep In Button Click Handler








16.115.Thread
16.115.1.Create a multi threaded web browsing application.Create a multi threaded web browsing application.
16.115.2.Show a Continuous Animation During an Asynchronous ProcessShow a Continuous Animation During an Asynchronous Process
16.115.3.Load the Data for a Window Asynchronously After It Has RenderedLoad the Data for a Window Asynchronously After It Has Rendered
16.115.4.Check Whether You Are Running on the UI ThreadCheck Whether You Are Running on the UI Thread
16.115.5.Ensure That You Are Running on the UI ThreadEnsure That You Are Running on the UI Thread
16.115.6.A Cancellable ProgressBar While Processing on a Background ThreadA Cancellable ProgressBar While Processing on a Background Thread
16.115.7.Show a Continuous Progress Bar While Processing on a Background ThreadShow a Continuous Progress Bar While Processing on a Background Thread
16.115.8.Execute a Method Asynchronously Using the Dispatcher QueueExecute a Method Asynchronously Using the Dispatcher Queue
16.115.9.Thread Sleep in Button Click handlerThread Sleep in Button Click handler
16.115.10.Execute a Method Asynchronously Using a Background Worker ThreadExecute a Method Asynchronously Using a Background Worker Thread
16.115.11.Track the Progress of a Background Worker ThreadTrack the Progress of a Background Worker Thread
16.115.12.Support the Cancellation of a Background Worker ThreadSupport the Cancellation of a Background Worker Thread
16.115.13.Create a Background Worker Thread in XAMLCreate a Background Worker Thread in XAML
16.115.14.WPF ThreadingWPF Threading
16.115.15.BlockThread.xamlBlockThread.xaml
16.115.16.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.