要传什么参数呀?假如传递是个string的参数那么这样写 string s;//接收参数 public Form1(string s) { InitializeComponent(); this.s=s; }运行的窗体的按钮事件里面实例化的时候吧参数传进去Form1 form1=new Form1(需要传的参数);//传递参数form1.Show();