↧
WPF thread and progressbar
Hi The original Stinger,When you want to update your UI and when the thread it busy, you could use Dispatcher and Invoke the Change as you want, prog.Dispatcher.BeginInvoke(new Action (() => { ......
View ArticleWPF thread and progressbar
Hey,If I make a class like this to do a thread but want to let the progress know to a progressbar on the main window what am I missing here: This is a class that makes use of a thread. I didn't place...
View Article