这是我的主要表单类,在里面我有Stop button click event
:
public partial class MainWin : Form
{
private Job job = new...
private void btnStop_Click(object sender, EventArgs e)
{
job.state = true;
}
}
当我点击停止按钮时,我将我的作业类成员从 false 更改为 true,我想要做的是当这个变量更改为 true 时,我想访问作业类中的特定方法并做一些事情。
public class Job
{
public bool state { get; set; }
private void processFile() // i want access to this method in order to change other class state
{
// do work
}
}
我该怎么做 ?