好的,我正在使用:带有Windows窗体的C#
我有背景,有效。现在我想创建一个取消按钮,但即使我告诉它取消并且后台工作接受了它,它仍继续运行它触发的可执行文件。
我有一个带有以下代码的取消按钮
private void cancelBackup_Click(object sender, EventArgs e)
{
backgroundWorker1.CancelAsync();
displayResults.Text = "Operation Cancelled";
}
后台工作者代码在这里:
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
String invoer = comboboxDriveLetter.Text;
invoer = invoer.Remove(2);
ProcessStartInfo pStartInfo = new ProcessStartInfo("C:\\windows\\system32\\wbadmin.exe", " START BACKUP -backuptarget:" + invoer + " -include:c: -AllCritical -quiet");
pStartInfo.CreateNoWindow = true;
pStartInfo.UseShellExecute = false;
pStartInfo.RedirectStandardInput = true;
pStartInfo.RedirectStandardOutput = true;
pStartInfo.RedirectStandardError = true;
Process process1 = new Process();
process1.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
process1.ErrorDataReceived += new DataReceivedEventHandler(ErrorHandler);
pStartInfo.Verb = "runas";
process1.StartInfo = pStartInfo;
process1.SynchronizingObject = displayResults;
process1.Start();
process1.BeginOutputReadLine();
process1.WaitForExit();
}
当我点击按钮取消时,它会执行操作,但备份只会继续,因为richtextbox最终会显示整个内容
取消操作创建为备份指定的卷的卷影副本...
创建为备份指定的卷的卷影副本...
创建为备份指定的卷的卷影副本...
创建为备份指定的卷的卷影副本...
体积SYSTEM(1.99 GB)的备份已成功完成
创建卷OS(C :)的备份,复制(0%)
创建卷OS(C :)的备份,复制(0%)
创建卷OS(C :)的备份,复制(8%)
创建卷OS(C :)的备份,复制(55%)
创建卷OS(C :)的备份,复制(82%)
卷OS(C :)的备份已成功完成。
备份操作成功完成
备份操作摘要:
------------------
体积SYSTEM(1.99 GB)的备份已成功完成
卷OS(C :)的备份已成功完成。
我做错了什么?
答案 0 :(得分:1)
取消BackgroundWorker是合作的。这意味着DoWork中的代码应定期检查标志并在请求时退出。
process1.Start();
当然不会回应那面旗帜。
您可以尝试从“取消”按钮调用process1.Kill();
,但我不确定这是否是线程安全的。
所以可能是这样的:
//process1.WaitForExit();
while (! process1.WaitForExit(100))
{
if (bgw.CancellationPending)
{
e.cancel = true;
process1.Kill();
}
}