解决方案 »

  1.   

    在双击事件下写

    Form2 frm = new Form2();
    frm.s[] =label.text;
    frm.show();
    }你可以在Form2中定义个数字s[],将label的text穿进去不就完了吗
      

  2.   

    可以为Form2添加一个新的构造函数
    public Form2(object sender,EventArgs e)
      

  3.   

    将Label事件中的sender和EvengArgs传进去就可以了
      

  4.   

    http://blog.csdn.net/yuekunge/article/details/9171301
      

  5.   

       所有lable都调用下面的事件
     private void labelDouble_Click(object sender, EventArgs e)
            {
                Form2 frm = new Form2();
                frm.lblText = ((Label)sender).Text;
                frm.ShowDialog();
            }From2中 public string lblText{get;set;}lblText就是传过来的lable的Text了
      

  6.   

    窗体间传值参看http://www.cnblogs.com/cosoft/archive/2011/08/08/2130659.html如何有好多label都绑定同一个双击事件
    你可以把双击事件中的内容编成一个通用方法,所有label的双击事件都调用这个方法即可。