Dispatcher.FromThread(Thread) 方法

定义

获取指定线程的 Dispatcher

public:
 static System::Windows::Threading::Dispatcher ^ FromThread(System::Threading::Thread ^ thread);
public static System.Windows.Threading.Dispatcher FromThread (System.Threading.Thread thread);
static member FromThread : System.Threading.Thread -> System.Windows.Threading.Dispatcher
Public Shared Function FromThread (thread As Thread) As Dispatcher

参数

thread
Thread

要从中获取 Dispatcher 的线程。

返回

Dispatcher

thread 的调度程序。

注解

如果调度程序不适用于指定的线程, null 将返回。

FromThread 不会在没有 的线程上创建一个 Dispatcher Dispatcher。 在尝试使用CurrentDispatcher属性获取Dispatcher该属性时,Dispatcher在线程上创建了一个新Dispatcher项。

适用于