What is the use of a Dispatcher Object in WPF?

后端 未结 2 1844
不思量自难忘°
不思量自难忘° 2020-12-14 17:11

What is the use of a Dispatcher Object in WPF?

相关标签:
2条回答
  • 2020-12-14 17:36

    Almost every WPF element has thread affinity. This means that access to such an element should be made only from the thread that created the element. In order to do so, every element that requires thread affinity is derived, eventually, from DispatcherObject class. This class provides a property named Dispatcher that returns the Dispatcher object associated with the WPF element.

    The Dispatcher class is used to perform work on its attached thread. It has a queue of work items and it is in charge of executing the work items on the dispatcher thread.

    You can find on the following link some more details on the subject: http://blogs.microsoft.co.il/blogs/arik/archive/2010/08/12/wpf-inside-out-dispatcher.aspx

    0 讨论(0)
  • 2020-12-14 17:53

    A dispatcher is often used to invoke calls on another thread. An example would be if you have a background thread working, and you need to update the UI thread, you would need a dispatcher to do it.

    0 讨论(0)
提交回复
热议问题