没有。
你可以一个一个便利控件,判断name是不是匹配。
或者用Findwindow,然用Control.FromHanlde

解决方案 »

  1.   

    可以在 Form.Controls 集合中进行查找。
    foreach ( Controle c in this.Controls){
        ...
    }
      

  2.   

    in webform, it is very easy to form a very deep tree hierarchy of controls, that is why they provide a FindControl methodbut in winform, the control hierarchy is normally very shallow, so you can use a simple loop to find the control, or use a HashTable
      

  3.   

    how to use a hashtable,then?