BackgroundWorker.ReportProgress() not updating property and locking up the UI
- by Willem
i am using a backgroundWorker to do a long running operation:
BackgroundWorker backgroundWorker = new BackgroundWorker() { WorkerSupportsCancellation = true, WorkerReportsProgress = true };
backgroundWorker.RunWorkerCompleted += delegate(object s, RunWorkerCompletedEventArgs args)
{
};
backgroundWorker.ProgressChanged += delegate(object s,…