如何启动和暂停后台运行线程从另一个表单按钮

本文关键字:线程 运行 另一个 按钮 表单 后台 暂停 何启动 启动 | 更新日期: 2023-09-27 18:18:15

我有两个表单。form1调用在加载期间启动一个后台运行线程。一旦它开始运行。form 2将弹出两个按钮(开始&停止)。当我按下停止按钮时,线程应该暂停,当我按下开始时,暂停线程应该从它停止的地方开始执行。

我试图使用这个代码。

   myResetEvent.WaitOne();//  to pause  the thread
   myResetEvent.Set();   // to resume the thread.

因为这些事件是在form1中定义的,但我希望它能从form2中工作

如何启动和暂停后台运行线程从另一个表单按钮

最后我得到了答案,它适用于我的情况,发布它,可能会帮助别人…

表格1代码…

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace thread_example
{
public partial class Form1 : Form
{
    private int i = 0;
    public Thread Run_thread = null, run1 = null; // thread definition
    public static AutoResetEvent myResetEvent = new AutoResetEvent(false);//intially set to false..
    public Form1()
    {
        InitializeComponent();
        run1 = new Thread(new ThreadStart(run_tab));
        run1.IsBackground = true;
        run1.Start();
    }
    private void run_tab()
    {
        //do something.        
    }
    private void button1_Click(object sender, EventArgs e)
    {
        form2 f2 = new form2();
        f2.Show();
    }
}
}


// Form 2 code...
  namespace thread_example
  {
    public partial class form2 : Form
  {
    public form2()
    {
        InitializeComponent();
    }
    private void btn_stop_Click(object sender, EventArgs e)
    {
        Form1.myResetEvent.WaitOne();
    }
    private void button2_Click(object sender, EventArgs e)
    {
        Form1.myResetEvent.Set();
    }
 }
}

您可以将Event实例作为表单参数传递给第二个表单。

class Form1
{
  ManualEvent myResetEvent;
  void ShowForm2()
  {
    var form2 = new Form2(myResetEvent);
    form.ShowDialog();
  }
}
class Form2
{
  ManualEvent myResetEvent;
  Form2(ManualEvent event)
  {
    myResetEvent = event;
  }
  void StopButtonClick()
  {
    myResetEvent.Reset();
  }
  void ContinueButtonClick()
  {
    myResetEvent.Set();
  }
}