我用的是visual studio 2005,我想在我现在运行的这个窗体,调用其它窗体.代码应该怎么写呀,谢谢。

2024-12-02 03:26:36
推荐回答(1个)
回答1:

要传什么参数呀?假如传递是个string的参数那么这样写
string s;//接收参数
public Form1(string s)
{
InitializeComponent();
this.s=s;
}

运行的窗体的按钮事件里面实例化的时候吧参数传进去
Form1 form1=new Form1(需要传的参数);//传递参数
form1.Show();