如题

解决方案 »

  1.   

    我懂得
    界面上放一按钮,然后
    otherForm.fun(this);
    调用其他form的公共方法 fun,参数this就把源的界面传递过去拉,哈哈哈.
      

  2.   

    public void GetControl(.....)
    {
         foreachforeach(System.Windows.Forms.Control control in xxxx.Controls)
           {
                ...............
           }
    }
    把一个界面传进去
      

  3.   


    LZ这个是得到XXX容器里面的控件吧
      

  4.   

    Control .ControlCollection cc=this.Controls;
    public void GetControl(.....)
    {
        foreachforeach(System.Windows.Forms.Control control in cc)
        {
          ...............
        }
    }
      

  5.   

    晕死 界面? 应该是窗体吧 直接在另一窗体中写个构造函数  把this传过去就行