Control.ControlCollection.Find(String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
根据控件的 Name 属性搜索控件并生成由所有匹配项组成的数组。
public:
cli::array <System::Windows::Forms::Control ^> ^ Find(System::String ^ key, bool searchAllChildren);
public System.Windows.Forms.Control[] Find (string key, bool searchAllChildren);
member this.Find : string * bool -> System.Windows.Forms.Control[]
Public Function Find (key As String, searchAllChildren As Boolean) As Control()
参数
- key
- String
要在 Control.ControlCollection 中定位的键。
- searchAllChildren
- Boolean
如果搜索所有子控件,则为 true
;否则为 false
。
返回
- Control[]
包含匹配控件的 Control 类型数组。
例外
key
为 null
或为空字符串 ("")。