你可以在form1中声明一个form2类型的成员变量, 在初始化的时候将form2的引用传入form1,然后就可以对form2进行操作了
差不多就跟下面的类型差不多就可以了:
class form2
{
private string textValue;
public string TextValue
{
set{textValue =value;}
get{retrun this.textValue;}
}
}
class form1
{
private form2 form2type;
public
form1(form2 form2Name)
{
this.form2type = form2Name;
}
public setForm2TextValue ()
{
this.form2type.textValue ="你想显示的值";
}
}