I have been banging my head against this problem for weeks, so I thought it was time to look for some outside help :-)
I have a WPF application with a main window that includes a whole bunch of controls that use binding. One of the controls is a SharpGL control, which I mention because it may be relevant.
The bindings all work on my laptop, and on other high spec machines, but don't work reliably (or sometimes at all) on lower-spec machines (my laptop is a hyperthreaded quad, one of the failing test machines is dual core). If I increase the frame rate of the SharpGL control on my laptop, the bindings will stop working. Equally, if I slow it down enough they start to work on the dual core machine (but the SharpGL control is too slow to be usable for what I need).
The last thing that may be worth noting is that I can make the problem go away by handling the PropertyChanged event and manually updating the bindings, but that then I'm not doing binding anymore and it is horrible!
So I guess I really have several questions:
1) Has anyone seen an issue like this before? Any thoughts on how to solve it? Could it be directly related to the presence of the SharGL control? 2) Is it possible for a control (in this case the SharpGL control) to fail in such a way that it somehow stops the bindings from updating on all of the other elements? 3) Is it possible for the Draw event raised by the SharpGL control, and handled in my code, to load the UI thread enough that there is simply not enough time available for the binding updates to occur?
Thanks in advance
Mike Nash