后台工作人员完成此过程后,我想更改表单上某些标签上的文字。
这是触发背景工作者的按钮:
private void btnProcessImages_Click(object sender, EventArgs e)
{
DialogResult processImagesWarnMsg = MessageBox.Show("You're about to process images, are you sure?", "Warning!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2);
if (processImagesWarnMsg == DialogResult.Yes)
{
DisableAllButtons();
if (!processImagesWorker.IsBusy)
{
processImagesWorker.RunWorkerAsync();
}
//The problem here is that the below will run BEFORE the worker is complete. Where should I place the below method in my code?
//ResetDirectoryStatistics();
}
}
以下是更改表单上标签文本的方法:
private void ResetDirectoryStatistics()
{
lblSelectedDirectory.Text = "N/A";
lblTotalNumberOfFilesInDirectory.Text = "N/A";
lblTotalNumberOfSupportedFilesInDirectory.Text = "N/A";
lblTotalNumberOfUnsupportedFilesInDirectory.Text = "N/A";
lblTotalNumberOfPoliciesInDirectory.Text = "N/A";
}
在处理后台工作程序时,我应该在哪里放置ResetDirectoryStatistics方法?我不能将它放在backgroundworker的“DoWork”方法中,因为那将是跨线程的。如果我将该方法放在processImagesWorker.RunWorkerAsync();之后,它将在RunWorker完成之前自行执行。
答案 0 :(得分:6)
您应该在后台工作程序的RunWorkerCompleted
事件中调用您的方法。此事件使用UI线程,因此不必担心跨线程问题。
答案 1 :(得分:2)
您只需将所有代码放入RunWorkerCompleted
的{{1}}事件中。
它甚至会确保事件在UI线程中运行,因此您不必担心调用或类似的事情。