在我的 .NET C# 项目中,我使用了“BackgroundWorker”来调用不同类中的方法。以下是我的主要形式的源代码
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
testClass t1 = new testClass();
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
t1.changevalue(1000);
}
private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
label1.Text += Convert.ToString(e.ProgressPercentage);
}
private void button1_Click(object sender, EventArgs e)
{
backgroundWorker1.RunWorkerAsync();
}
}
并在我的项目中名为“testClass.cs”的单独类文件中包含以下代码。我想从这个类向BackgroundWorker报告进度,这样我就可以从label1中显示main中的进度。
class testClass
{
private int val;
public int changevalue(int i)
{
for (int j = 0; j < 1000; j++)
{
val += i + j;
//from here i need to preport the backgroundworker progress
//eg; backgroundworker1.reportProgress(j);
}
return val;
}
}
但我不允许从“testClass”访问 BackgroundWorker。
有人可以告诉如何克服这个问题吗?
ps-我找到了这个解决方案,但我不明白。