TreeNodeCollection.Find(String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找具有指定键的树节点,可以选择搜索子节点。
public:
cli::array <System::Windows::Forms::TreeNode ^> ^ Find(System::String ^ key, bool searchAllChildren);
public System.Windows.Forms.TreeNode[] Find (string key, bool searchAllChildren);
member this.Find : string * bool -> System.Windows.Forms.TreeNode[]
Public Function Find (key As String, searchAllChildren As Boolean) As TreeNode()
参数
- key
- String
要搜索的树节点的名称。
- searchAllChildren
- Boolean
如果搜索树节点的子节点,则为 true
;否则为 false
。
返回
TreeNode[]
一个 TreeNode 对象的数组,这些对象的 Name 属性与指定的键匹配。
例外
.NET 5 及更高版本: key
为 null
或空。
注解
属性Name对应于 中 TreeNodeCollection的TreeNode键。
键比较不区分大小写。
key
如果参数为 null
或为空字符串,或者没有匹配项,则 Item[] 属性返回空数组.