0

Form1の上部にこれを追加しました:

bool completed;
AutoResetEvent autoreset;

コンストラクターで私がした:

completed = false;
autoreset = new AutoResetEvent(false);

バックグラウンドワーカーの DoWork イベントで、私は次のことを行いました:

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
            BackgroundWorker worker = sender as BackgroundWorker;
            while (true)
            {
                completed = true;
                if ((worker.CancellationPending == true))
                {
                    e.Cancel = true;
                    break;
                }
                else
                {
                    if (tempCpuValue >= (float?)nud1.Value || tempGpuValue >= (float?)nud1.Value)
                    {
                        soundPlay = true;
                        NudgeMe();
                    }
                    else
                    {
                        soundPlay = false;
                        stop_alarm = true;

                    }

                    tempCpuValue = Core.cpuView(pauseContinueDoWork,cpu,this,data,tempCpuValue,button1);
                    tempGpuValue = Core.gpuView(pauseContinueDoWork,data,tempGpuValue,button1);
                    this.Invoke(new Action(() => data = new List<string>()));
                    tempCpuValue = Core.cpuView(pauseContinueDoWork, cpu, this, data, tempCpuValue, button1);
                    tempGpuValue = Core.gpuView(pauseContinueDoWork, data, tempGpuValue, button1);
                    this.Invoke(new Action(() => listBox1.DataSource = null));
                    this.Invoke(new Action(() => listBox1.DataSource = data));



                    //listBox1.DataSource = data;

                }
            }
            autoreset.Set();
        }

次に、Form1 のクロージング イベントで次のことを行いました。

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (MessageBox.Show("Are you Sure you want to Exit. Click Yes to Confirm and No to continue", "WinForm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
            {
                e.Cancel = true;
            }
            else
            {
                if (completed == true)
                {
                    this.backgroundWorker1.CancelAsync();
                    autoreset.WaitOne();
                }
            }


        }

WaitOne() を実行しているときに、フォームが途中で表示され、プログラムがフリーズします。私ができることは、Visual Studio の [Debug] > [Stop Debugging] だけです。

マルチスレッドについて RaceOnRCWCleanup を時々取得する例外を回避するために、それを実行したかったのです。

そして時々、プログラムを閉じると、別のクラスでこの例外が発生しました:

System.ObjectDisposedException was unhandled by user code
  HResult=-2146232798
  Message=Cannot access a disposed object.
Object name: 'Form1'.
  Source=System.Windows.Forms
  ObjectName=Form1
  StackTrace:
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at System.Windows.Forms.Control.Invoke(Delegate method)
       at HardwareMonitoring.Core.cpuView(Boolean pause, CpuTemperature cpuTemp, Form1 f1, List`1 myData, Nullable`1 myCpuTemp, Button b1) in d:\C-Sharp\HardwareMonitoring\HardwareMonitoring\Hardwaremonitoring\Core.cs:line 55
       at HardwareMonitoring.Form1.backgroundWorker1_DoWork(Object sender, DoWorkEventArgs e) in d:\C-Sharp\HardwareMonitoring\HardwareMonitoring\Hardwaremonitoring\Form1.cs:line 427
       at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
  InnerException: 

backgroundworker がジョブを終了する前に配置された form1 と同様に、backgrounddworker dowork イベントはこのクラス メソッドを使用しています。

4

2 に答える 2

2

Bgw が最初に設定するバックグラウンド ワーカーであるとします。

Bgw.WorkerSupportsCancellation = true;  

次に DoWork デリゲートで、Bgw.CancellationPending が true か false かを確認する必要があります。

true の場合は、backgroundworker がキャンセルされたことを意味し、そのまま続行しない場合は関数を中止する必要があります。

于 2013-09-25T09:59:18.490 に答える
0

これを試して:

void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
    while (!backgroundWorker1.CancellationPending)
    {
        if (tempCpuValue >= (float?)nud1.Value || tempGpuValue >= (float?)nud1.Value)
        {
            soundPlay = true;
            NudgeMe();
        }
        else
        {
            soundPlay = false;
            stop_alarm = true;

        }

        tempCpuValue = Core.cpuView(pauseContinueDoWork, cpu, this, data, tempCpuValue, button1);
        tempGpuValue = Core.gpuView(pauseContinueDoWork, data, tempGpuValue, button1);
        this.BeginInvoke(new Action(() => data = new List<string>()));
        tempCpuValue = Core.cpuView(pauseContinueDoWork, cpu, this, data, tempCpuValue, button1);
        tempGpuValue = Core.gpuView(pauseContinueDoWork, data, tempGpuValue, button1);
        this.BeginInvoke(new Action(() => listBox1.DataSource = null));
        this.BeginInvoke(new Action(() => listBox1.DataSource = data));
    }

    completed = true;

    autoreset.Set();
}

void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    if (MessageBox.Show("Are you Sure you want to Exit. Click Yes to Confirm and No to continue", "WinForm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
    {
        e.Cancel = true;
    }
    else
    {
        if (!completed)
        {
            this.backgroundWorker1.CancelAsync();
            Hide(); // hide the form while waiting for the bw to terminate
            autoreset.WaitOne();
        }
    }
}

問題を軽減するために、呼び出しをInvokeからthis に変更しました。BeginInvoke

于 2013-09-25T10:12:38.143 に答える