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






<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();

    }
}
WPF Thread Pool Queue User Work Item








24.153.Thread
24.153.1.WPF ThreadingWPF Threading
24.153.2.Thread Sleep in Button Click handlerThread Sleep in Button Click handler
24.153.3.Check Whether You Are Running on the UI ThreadCheck Whether You Are Running on the UI Thread
24.153.4.Ensure That You Are Running on the UI ThreadEnsure That You Are Running on the UI Thread
24.153.5.Execute a Method Asynchronously Using the Dispatcher QueueExecute a Method Asynchronously Using the Dispatcher Queue
24.153.6.ThreadPool.QueueUserWorkItemThreadPool.QueueUserWorkItem
24.153.7.BlockThread.xamlBlockThread.xaml
24.153.8.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.
24.153.9.Create a multi threaded web browsing application.Create a multi threaded web browsing application.