Maybe someone can explain what a DispatcherFrame is. Other posts and the MS Docs' description is in my opinion not detailed enough:
Represents an execution loop in the Dispatcher.
Does this mean it is blocking the message queue in some way?
thanks;
Maybe someone can explain what a DispatcherFrame is. Other posts and the MS Docs' description is in my opinion not detailed enough:
Represents an execution loop in the Dispatcher.
Does this mean it is blocking the message queue in some way?
thanks;
You can think of a DispatcherFrame as something that forces operations to be processed until some condition is met (or the application is shut down). Please refer to Kent Boogaart's blog post on the subject for more information and a downloadable sample.