I\'m creating a backup utility in WPF and have a general question about threading:
In the method backgroundWorker.DoWork(), the sta
Have you looked at using Dispatcher.Invoke?
Dispatcher.Invoke(new Action(() => { Button_Start.Content = i.ToString(); }));
Or use BeginInvoke if you want something to happen asynchronously.