静态方法中不能使用this,还有什么办法?
pubic class maForm:Form {
pubic void showfrmChild()
{
frmChild frm=new frmChild(this);
frm.Show();
}
}
pubic class frmChild:Form
{
public frmChild(maForm parent)
{
this.Mdiparent=parent;
}
}
pubic class newChild:Form
{
这里我该怎么调用maForm中的showfrmChild()方法?
}
其实就是在一个Form的子窗口中调用另一个子窗口。