C
cj
Hi there, how might you implement a "wait" loop in WPF? (.net 3.0) without
freezing the UI?
previously I'd do something like this:
while (!someObject.IsProcessing){
Threading.Thread.Sleep(10);
Application.DoEvents();
}
....
but the DoEvents isn't there in wpf.
thanks,
chris.
freezing the UI?
previously I'd do something like this:
while (!someObject.IsProcessing){
Threading.Thread.Sleep(10);
Application.DoEvents();
}
....
but the DoEvents isn't there in wpf.
thanks,
chris.