In WPF and Silverlight, Dispatcher is an object that is used to execute work on a specific thread.
I bind observable dictionary from view model to view. I use Caliburn Micro Framework. View: <ListBox Name="Friends" SelectedIndex="{…
c# wpf mvvm caliburn.micro dispatcherI have a somewhat complex WPF application which seems to be 'hanging' or getting stuck in a Wait call when …
c# .net wpf invoke dispatcherAnyone knows how to return a value from Dispatcher.Invoke in wpf? I want to return the selected index for …
wpf return invoke dispatcherI just realized in a C# .Net 4.0 WPF background thread that this doesn't work (compiler error): Dispatcher.Invoke(DispatcherPriority.Normal, …
c# .net wpf delegates dispatcherfirst I need to say that I´m noob with WPF and C#. Application: Create Mandelbrot Image (GUI) My dispatcher …
c# wpf dispatcherIn the constructor of an object i need to create a WPF mediaElement object: m_videoMedia = new MediaElement(); but the …
c# wpf dispatcherI had a Invalid Cross Thread access issue, but a little research and I managed to fix it by using …
c# wcf silverlight asynchronous dispatcherI realized something strange in my background worker in my WPF application. What I'm trying to accomplish right now is …
c# wpf backgroundworker dispatcher dispatchI wrote code in WPF. Firstly, I wrote a separate project to test work with a COM port device, and …
c# wpf delegates dispatcherI've used volatile where I'm not sure it is necessary. I was pretty sure a lock would be overkill in …
c# multithreading performance dispatcher volatile