0

我正在使用创建一个线程

public static void Invoke(ThreadStart method)
{
    Thread th = default(Thread);
    try 
    {
        th = new Thread(method);
        th.Start();
    } 
    catch (Exception ex) 
    { }
}

我称它为

Invoke(new Threading.ThreadStart(method_name));

在 WPF 中,我需要该线程所做的事情不应该挂起 UI(即应该启动 ASync 线程)。我应该怎么办?

4

3 回答 3

2

如果您使用的是 .net 4.5,您可以这样做

    Task.Run( () => 
{
    // your code here
});

在 .net 4.0 中,您可以执行以下操作:

Task.Factory.StartNew(() => 
{
    // your code here
}, 
CancellationToken.None, 
TaskCreationOptions.DenyChildAttach, 
TaskScheduler.Default);
于 2013-08-07T07:43:42.563 回答
1

如果您只使用 Thread for 响应式 UI,请查看 System.ComponentModel.BackgroundWorker

这通常用于响应式 UI

如果您使用最新版本的框架,您还可以查看 async 关键字

异步/等待与 BackgroundWorker

于 2013-08-07T06:25:46.533 回答
0

如果您使用的是 WPF,则可以使用 BeginInvoke。您的代码到底有什么问题?这工作正常:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace AsyncTest
{
    class Program
    {
        static void Main(string[] args)
        {
            // First Counter (Thread)
            Invoke(new ThreadStart(Do));
            Thread.Sleep(10000);

            // Second Counter (Thread)
            Invoke(new ThreadStart(Do));
            Console.ReadLine();
        }

        public static void Do()
        {
            for (int i = 0; i < 10000000; i++)
            {
                Console.WriteLine("Test: " + i.ToString());
                Thread.Sleep(100);
            }
        }

        public static void Invoke(ThreadStart ThreadStart)
        {
            Thread cCurrentThread = null;
            try
            {
                cCurrentThread = new Thread(ThreadStart);
                cCurrentThread.Start();
            }
            catch (Exception ex)
            {
            }
        }
    }
}
于 2013-08-07T06:25:20.803 回答