I am trying to update a label from a BackgroundWorker thread that calls a method from another class outside the Form. So I basically want to do this:
MainForm.counterLabel.Text = Counter.ToString();
but the label is private. I have looked into things like using BackgroundWorker's progressupdate function, invoke, etc but they don't seem to be what I need.
here is some more of my code:
the MainForm:
clickThread.DoWork += (s, o) => { theClicker.Execute(speed); };
clickThread.RunWorkerAsync();
The Class/Method called:
public void Execute(int speed)
{
while (running)
{
Thread.Sleep(speed);
Mouse.DoMouseClick();
Counter++;
//Update UI here
}
}
I think I have overly complicated my code a bit :\ and backed myself into a corner.
You should use the ProgressChanged
-Event to update the UI. The code for the BackgroundWorker
should look something like:
internal static void RunWorker()
{
int speed = 100;
BackgroundWorker clickThread = new BackgroundWorker
{
WorkerReportsProgress = true
};
clickThread.DoWork += ClickThreadOnDoWork;
clickThread.ProgressChanged += ClickThreadOnProgressChanged;
clickThread.RunWorkerAsync(speed);
}
private static void ClickThreadOnProgressChanged(object sender, ProgressChangedEventArgs e)
{
someLabel.Text = (string) e.UserState;
}
private static void ClickThreadOnDoWork(object sender, DoWorkEventArgs e)
{
BackgroundWorker worker = (BackgroundWorker)sender;
int speed = (int) e.Argument;
while (!worker.CancellationPending)
{
Thread.Sleep(speed);
Mouse.DoMouseClick();
Counter++;
worker.ReportProgress(0, "newText-Parameter");
}
}
}
sirz
Try to invoke the method.
For Example:-
this.Invoke((Action)(() => Resources.xobjMF.Enabled = true));
来源:https://stackoverflow.com/questions/36591068/backgroundworker-thread-to-update-winforms-ui