Tagged Questions
The dispatcher tag has no wiki summary.
26
votes
10answers
9k views
MVVM best practice to pass Dispatcher to the ViewModel
I suppose to be able to access the Dispatcher that belongs to the View I need to pass it to the ViewModel. Bu the View should not known anything about the ViewModel so how do you pass it? Introduce an ...
22
votes
7answers
6k views
Event system in Python
What event system for Python do you use? I'm already aware of pydispatcher, but I was wondering what else can be found, or is commonly used?
I'm not interested in event managers that are part of ...
15
votes
2answers
7k views
Understanding the Silverlight Dispatcher
I had a Invalid Cross Thread access issue, but a little research and I managed to fix it by using the Dispatcher.
Now in my app I have objects with lazy loading. I'd make an Async call using WCF and ...
13
votes
1answer
2k views
Ensuring that things run on the UI thread in WPF
I'm building a WPF application. I'm doing some async communication with the server side, and I use event aggregation with Prism on the client. Both these things results in new threads to be spawned ...
12
votes
2answers
8k views
Is WPF Dispatcher the solution of multi threading problems?
I have a very bad feeling about using lock in my code but now the Dispatcher of WindowBase exists and I want to use it everywhere.
For example I use a multi thread singleton WCF service who publish ...
12
votes
5answers
10k views
WPF Dispatcher.Invoke 'hanging'
I have a somewhat complex WPF application which seems to be 'hanging' or getting stuck in a Wait call when trying to use the dispatcher to invoke a call on the UI thread.
The general process is:
...
11
votes
3answers
1k views
Dispatcher to Thread relationships in WPF
it is not entirely clear to me how many Dispatchers there are in an application and how they are related to, or referenced from Threads.
As I understand, a WPF application has 2 threads (one for ...
9
votes
1answer
2k views
Can't use dispatcher on WP7
I was looking around for refrences using dispatcher to call code on the UI thread and they say to do this:
Dispatcher.BeginInvoke(() => {OnSendSuccessful(); });
But I get a compiler error saying ...
9
votes
3answers
2k views
Weird problem with Rails app and Mongrel
I originally posted a question relating to this problem on serverfault.com: http://serverfault.com/questions/152587/apache-mod-proxy-to-another-server
I have since realized that this is not an issue ...
8
votes
2answers
2k views
WPF BackgroundWorker vs. Dispatcher
In my WPF application I need to do an async-operation then I need to update the GUI. And this thing I have to do many times in different moment with different oparations. I know two ways to do this: ...
6
votes
2answers
2k views
Dispatcher.BeginInvoke: Cannot convert lambda to System.Delegate
I'm trying to call System.Windows.Threading.Dispatcher.BeginInvoke. The signature of the method is this:
BeginInvoke(Delegate method, params object[] args)
I'm trying to pass it a Lambda instead of ...
6
votes
4answers
558 views
How Dispatcher differs from the background thread?
How Dispatcher concept in .NET 3.5 in WPF differs from the background thread in .NET 2.0 ?
For example what will be difference between statements below:
delegate.Invoke/BeginInvoke AND ...
6
votes
3answers
20k views
WPF Dispatcher.BeginInvoke and UI/Background Threads
I think I need some clarifications regarding WPFs Dispatcher.Invoke and Dispatcher.BeginInvoke usage.
Suppose I have some long running 'work' code like such that is invoked on the press of a button ...
5
votes
2answers
110 views
C++ Factory Pattern with Heterogenous Constructor Constraint
I'm implementing a C++ program that can programmatically instantiate objects given an input file which provides the class names and arguments to pass to the constructors.
The classes are derived from ...
5
votes
3answers
1k views
Is it considered bad practice to have ViewModel objects hold the Dispatcher?
My WPF application is structured using the MVVM pattern. The ViewModels will communicate asynchronously with a server, and when the requested data is returned a callback in the ViewModel is triggered, ...
5
votes
1answer
242 views
Threading 101: What is a Dispatcher?
Once upon a time, I remembered this stuff by heart. Over time, my understanding has diluted and I mean to refresh it.
As I recall, any so called single threaded application has two threads:
a) the ...
5
votes
4answers
351 views
Is it possible to create method call dispatcher in C++?
Consider a following code:
struct X {
void MethodX() {
...
}
};
struct Y {
void MethodY() {
...
}
};
void test () {
X x;
Y y;
Dispatcher d;
d.Register("x", x, ...
4
votes
2answers
104 views
UI freezes on heavy calculation
I am loading huge files to the memory but on this calculation my application is freezes .
Any idea what is the issue with my code ?
public void Drop(DragEventArgs args)
{
BackgroundWorker worker = ...
4
votes
2answers
286 views
Spring 3.0 junit test DispatcherServlet
I am trying to test my application with junit.
Therefore I've setup the following class:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = ...
4
votes
1answer
171 views
Does a Non UI thread which is running under impersonated user automatically imersonate the UI thread?
I have been searching for several hours now and have so far had no luck with this one - so thought I would post.
I have a WPF Application written in vb.net running on DotNet 4.0 which launches worker ...
4
votes
2answers
215 views
How do I avoid a race condition when using Dispatcher.Run()?
I've found little information on how to properly use the Dispatcher class on its own.
Currently I am using it similar to this question, but there is an inherent race condition which I do not see ...
4
votes
1answer
2k views
Problem with binding property typeof BitmapImage
I have problem with update listbox from view model class. I use Caliburn Micro framework. My scenario is here:
I bind property of type bindableCollection on listbox:
Code from view model:
private ...
4
votes
4answers
226 views
Creating a System.Windows.Controls.Image throws an exception - how do I use the dispatcher to instantiate it?
I'm running my unit tests on a piece of code that does the following in the test:
Assert.IsNotNull(target.Icon);
Inside the getter for the Icon property, I'm doing this:
...
4
votes
5answers
2k views
wpf how to return a value with dispatcher.invoke
Anyone knows how to return a value from Dispatcher.Invoke in WPF? I want to return the selected index for a combobox.
Thanks!
4
votes
2answers
826 views
How to invoke WPF Dispatcher in Nunit?
I want to test an application which renders a text block with a data field value. I would like to get the actual width and actual height, once the rendering completes. Everything works fine. The ...
4
votes
2answers
2k views
WPF Dispatcher, Background worker and a whole lot of pain
Ok this may be really simple but everything I try just seems to hit a brick wall.
I have a view model with two properties, which are bound to my WPF form:
bool IsWorking {get;set;}
...
4
votes
4answers
6k views
System.Windows.Threading.Dispatcher and WinForms?
Does a System.Windows.Threading.Dispatcher work on the UI-thread of a WinForms application?
If yes, why? It is coming from WindowsBase.dll which seems to be a WPF component.
If not, how can I invoke ...
4
votes
2answers
3k views
3
votes
2answers
51 views
understanding system call dispatcher for windows?
I am trying to do some reversing to find out a function call behind the scene.
While debugging using windbg I came across a call,
mov edx,offset SharedUserData!SystemCallStub
call dword ptr ...
3
votes
2answers
180 views
Dispatcher.Invoke 'hangs' during asynchronous read in Windows Service
I've created a Windows service based on the ServiceBase class. In this service I created an instance of the NamedPipeClientStream (m_Stream). After connecting this stream I start an asynchronous read ...
3
votes
2answers
185 views
How to set Image.Source property with Dispatcher?
I tried use this recomendations: http://msdn.microsoft.com/en-us/library/ms741870.aspx ("Handling a Blocking Operation with a Background Thread").
This is my code:
public partial class ...
3
votes
2answers
83 views
How to GRAB a variable from UI thread while in a working thread?
I'm making slow progress on a simple application I'm making: it creates a request, fills out the headers and fetches a webpage for me. I figured out that in order to update the UI (after a button has ...
3
votes
1answer
383 views
Problem with WPF Application and slow GUI response
I've been analyzing a WPF application which basically fetch data from a server and display the data in the GUI.
This code is not mine, and the application has a problem related with slow response ...
3
votes
1answer
417 views
WPF DataGrid bound to an ObservableCollection that is updated on separate thread fails to maintain sort
Download Sample Project
I have a wpf 4 datagrid that is bound to an ObservableCollection. This ObservableCollection is
updated on another thread. I can see the updates coming through to my simple ...
3
votes
3answers
183 views
realy long time between invoking dispatcher and execution
I apologize beforehand if this is a stupid question. I am an embedded C programmer by profession and C# is relatively new to me.
I have an application which basically boils down to the following: ...
3
votes
2answers
288 views
Generating and passing complex content to the GUI thread in WPF/C#
I'm aware, and use, the xxx.Dispatcher.Invoke() method to get the background thread to manipulate GUI elements. I think I'm bumping up against something similar, but slightly different, where I want a ...
3
votes
1answer
317 views
Dispatcher vs Multithreading
According to Single-Threaded Application with Long-Running Calculation MSDN example, there is a possibility of creating a responsive GUI in just 1 thread. Thanks to the Dispatcher object, as we can ...
3
votes
2answers
217 views
Universal REST frontend - does it exist?
I'm looking for some thin layer on top of handling HTTP requests that can easily do routing to different backends, based on the uri / rest verb / actual service location / .... This layer should also ...
3
votes
2answers
2k views
WPF Get gui Dispatcher
Is there any way to get the gui thread dispatcher when you have no reference to any elements..
3
votes
2answers
630 views
C# Thread-safe Extension Method
I may be waaaay off, or else really close. Either way, I'm currently SOL. :)
I want to be able to use an extension method to set properties on a class, but that class may (or may not) be updated ...
3
votes
2answers
6k views
C#, WPF, Automatically call Dispatcher.Invoke when needed?
I have a program with a Geospace map embedded into it. The event handling for the map is handled on a separate thread to keep the map responsive (for example, the events that fire when the map is ...
3
votes
5answers
843 views
Is there any command to update UI immediately?
I want to update a progress bar from running 1 to 100 with this code.
for (int i = 0; i <= 100; i++) {
System.Threading.Thread.Sleep(100);
progressBar1.Value = i;
}
But the result is, ...
3
votes
3answers
2k views
WPF Dispatcher Invoke return value is always null
I have a call to a method that returns a UIElement that I call using the Dispatcher, below is the code.
However the return value of the Dispatcher invoke is always NULL, any ideas?
void ...
2
votes
0answers
171 views
Unit testing COM events?
We have a home-made COM component written in C++. We now want to test its functions and events in a C# Test Project. The function tests are pretty straight-forward. However, the events are never ...
2
votes
3answers
68 views
Updating bound WPF property instantly
I have a textbox on a window that reports the status and or success of a action. It's bound to a property on the ViewModel.
So when a user activates the action that could take some time I wan't to ...
2
votes
2answers
188 views
Dispatcher.Invoke() on Windows Phone 7?
In a callback method I am attempting to get the text property of a textBox like this:
string postData = tbSendBox.Text;
But because its not executed on the UI thread it gives me a cross-thread ...
2
votes
1answer
108 views
Silverlight - Render controls in background thread
I need to print a screenshot of a silverlight UserControl, which I have tried doing the usual way with PrintDocument, but unfortunately it takes too long and because it has to take place on the UI ...
2
votes
2answers
62 views
WPF getting a reference to the rendering thread, to allow thread safe data access
Recently I have been running into issues involving the use of multiple threads and sharing access to properties which are bound to WPF controls. These crashes tend to occur at random places in time, ...
2
votes
1answer
233 views
Windows Phone App crashes when using NavigationService.GoBack() too soon
Even though NavigationService.CanGoBack returns True, NavigationService.GoBack() throws me these exceptions :
A first chance exception of type 'System.ArgumentException' occurred in ...
2
votes
3answers
132 views
UI Thread Block
I have created a simple WPF Application and added a button to the default window. When I click on the button, a simulated long working method(simulated using a Thread.Sleep(15000) is called. I am ...