I am using a View Model first approach with CM where I create a ViewModel and activate it immediately after. In the constructor of the ViewModel I am starting a coroutine using the method:
Coroutine.BeginExecute(Example().GetEnumerator());
I have a busy indicator in my views, and I set the busy property (that's TwoWay bound to the IsBusy property on the busy indicator control) to true. When true, the indicator shows; when false, it's hidden.
So my coroutine would look something like this:
IsBusy = true;
var example = client.AsyncOp();
yield return example;
var exampletwo = client.AnotherAsyncOp();
yield return exampletwo;
IsBusy = false;
The issue appears to be IsBusy not propagating to the view correctly. There are occasions when the indicator won't even show. There are other occasions (the most common) where the indicator will show, but won't turn off even after IsBusy is set to false.
I don't believe this is a busy indicator issue as this happens with various other properties. If, for example, I set a property that's bound to a ListBox's SelectedItem, the property will be set, but the ListBox won't show it as its SelectedItem in the GUI.
The Views property has a count of zero when the coroutine is initially executed, and then suddenly has a count of 1 after the first yield return. I maybe wrong, but it seems like there's some kind of race condition going on where CM is hooking up the view, and me setting the properties.
I have also tried moving the Coroutine to the OnViewLoaded event, but that still has the same problems, which is curious considering the previous paragraph!
Thanks
<i:Interaction.Triggers><i:EventTrigger EventName="Loaded"><cal:ActionMessage MethodName="ViewLoaded" /></i:EventTrigger></i:Interaction.Triggers>this way the built in co-routine infrastructure is used. Try that and let me know what the result is, also, how is IsBusy property implemented – Simon Fox Jul 24 '11 at 3:23Screenin CM providesOnViewLoadedbut it is not a co-routine (return type of void). Using this approach instead you are a) sure the view has completely loaded and b) are able to use theActionMessageinfrastructure for invoking the co-routine (which means the Context param of your co-routines results will be properly instantiated which may be useful in some cases). – Simon Fox Jul 24 '11 at 19:11