2
votes
5answers
318 views
What does Cannot modify the logical children for this node at this time because a tree walk is in progress mean?
Hi,
I am setting the DataContext of an object in the completed method of a background worker thread. For some reason, I get an error saying:
Cannot modify the logical children for …
0
votes
How to get HttpWebRequest.AllowAutoRedirect to set the cookies when doing a GET/POST on the redrected page?
If you don't want to use a CookieContainer, the following code will access a page, providing the cookie in the parameter. Then, it will download all cookies set by that page and return them as a Li …
1
vote
Invoke delegate for many controls
How about something like:
Dispatcher.BeginInvoke(new DispatcherOperationCallback((param) =>
{
this.statusDisplay1.CallStatus = callStatusMsg;
return …
1
vote
What does Cannot modify the logical children for this node at this time because a tree walk is in progress mean?
After playing around more, I think this is a bug in the Silverlight charting toolkit.
The following code causes a reproduceable crash.
int runCount = 0;
private vo …
