ThreadPool.QueueUserWorkItem : Thread « Windows Presentation Foundation « C# / C Sharp






ThreadPool.QueueUserWorkItem

ThreadPool.QueueUserWorkItem
  

<Window x:Class="DispatcherExamples.MyWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Use BeginInvoke" Height="300" Width="300"
    >
    <Grid>
      <StackPanel>
        <Button x:Name="useBeginInvokeButton" Content="Use BeginInvoke" />
      </StackPanel>
    </Grid>
</Window>

//File:Window.xaml.cs


using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Windows.Threading;
using System.Threading;

namespace DispatcherExamples
{
    public partial class MyWindow : System.Windows.Window
    {

        public MyWindow()
        {
            InitializeComponent();

            useBeginInvokeButton.Click += new RoutedEventHandler(useBeginInvokeButton_Click);
        }

        void useBeginInvokeButton_Click(object sender, RoutedEventArgs e)
        {
            ThreadPool.QueueUserWorkItem(delegate
            {
                MyDelegateType methodForUiThread = delegate
                {
                    this.Background = new SolidColorBrush(Color.FromRgb(3,2, 1));
                };
                this.Dispatcher.BeginInvoke(DispatcherPriority.Normal, methodForUiThread);
            });
        }


        public delegate void MyDelegateType();

    }
}

   
    
  








Related examples in the same category

1.WPF ThreadingWPF Threading
2.Thread Sleep in Button Click handlerThread Sleep in Button Click handler
3.Check Whether You Are Running on the UI ThreadCheck Whether You Are Running on the UI Thread
4.Ensure That You Are Running on the UI ThreadEnsure That You Are Running on the UI Thread
5.Execute a Method Asynchronously Using the Dispatcher QueueExecute a Method Asynchronously Using the Dispatcher Queue
6.BlockThread.xamlBlockThread.xaml
7.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.
8.Create a multi threaded web browsing application.