BackgroundWorker is a helper class in .NET's System.
I am setting the DataContext of an object in the completed method of a background worker thread. For some reason, …
c# wpf backgroundworkerI'm having a really weird issue with a background worker in one of my applications. I recently overhauled it slightly …
c# events backgroundworker eventtriggerI'm using a streamwriter in combination with a background worker, for logging. As such, I have System::Void MyUI::execBWorker_…
.net c++-cli clr backgroundworker streamwriterIn a WPF app I have a sheduled database access task, periodically run by a timer and this task have …
c# .net wpf multithreading backgroundworkerI create thread with BackgroundWorker, and in the loop I check every time if CancellationPending is true or not, like …
c# multithreading windows-phone-7 backgroundworker windows-phone-7.1I am trying to figure out a way to verify that a BackgroundWorker thread is alive (i.e. still running. …
c# winforms .net-4.0 backgroundworker watchdogI currently have the following: View Model MovieProcessor movieProcessor = new MovieProcessor(SelectedPath, this); BackgroundWorker worker = new BackgroundWorker(); worker.WorkerReportsProgress = true; …
c# wpf progress-bar backgroundworkerI recently tried to use backgroundworker instead of "classic" threads and I'm realizing that it's causing, at least for me, …
c# winforms backgroundworkerI have a call to a method that returns a UIElement that I call using the Dispatcher, below is the …
c# wpf backgroundworker dispatcherOk this may be really simple but everything I try just seems to hit a brick wall. I have a …
wpf mvvm multithreading backgroundworker dispatcher