textBox1
我的主窗体中有一个控件Form1
。我希望能够更改textBox1
另一个类的文本another_class
,但我做不到。我another_class
有一个事件teacher
,我Form1
通过执行以下操作来处理
private void button1_Click(object sender, EventArgs e)
{
another_class myNew_another_class = new another_class();
myNew_another_class.teacher(sender, e);
}
所以我无法在其中创建以下内容,another_class
因为它会与上面的处理程序混淆并对其进行红色标记
public another_class (Form1 anytext_Form)
{
this.anytext_Form = anytext_Form;
}