所以我在我的FormMain.cs
添加了一个BackGroundWorker对象,并创建了两个方法来处理事件ProgressChanged
和RunWorkerCompleted
。我发现我必须进入ForMain.Designer.cs
手动将方法连接到事件..
this.bgWorker.WorkerReportsProgress = true;
this.bgWorker.WorkerSupportsCancellation = true;
this.bgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgWorker_DoWork);
this.bgWorker.ProgressChanged += bgWorker_ProgressChanged;
this.bgWorker.RunWorkerCompleted += bgWorker_RunWorkerCompleted;
令人困惑的是,如果我改变FormMain.Designer.cs
上的任何控件,那么我创建的两个连线事件将被删除,我必须手动添加它们。这包括在设计师周围移动控件。知道为什么会这样吗?
必须手动添加这些
this.bgWorker.ProgressChanged += bgWorker_ProgressChanged;
this.bgWorker.RunWorkerCompleted += bgWorker_RunWorkerCompleted;
答案 0 :(得分:1)
设计器文件仅供设计人员使用 - 当您在设计器中进行更改时,它将被翻录并重新编写。通常会在InitializeComponent
上面发表此评论:
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
请注意,不要使用代码编辑器修改内容。您应该通过设计器UI添加这些事件处理程序,或者您应该将它们添加到代码隐藏文件中(partial
类的另一半)。
例如,在调用InitializeComponent
之后在构造函数中添加它们:
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
this.bgWorker.ProgressChanged += bgWorker_ProgressChanged;
this.bgWorker.RunWorkerCompleted += bgWorker_RunWorkerCompleted;
}
}