gpt4 book ai didi

c#-3.0 - 如何从 TreeNode.FullPath 数据获取实际的树节点?

转载 作者:行者123 更新时间:2023-12-01 23:29:53 24 4
gpt4 key购买 nike

我想存储来自 TreeNode.FullPath 的一些数据,然后我想重新扩展到目前为止的所有数据。有简单的方法吗?

非常感谢!

最佳答案

您可以将其作为 TreeNodeCollection 的扩展方法编写:

using System;
using System.Linq;
using System.Windows.Forms;

namespace Extensions.TreeViewCollection
{
public static class TreeNodeCollectionUtils
{
public static TreeNode FindTreeNodeByFullPath(this TreeNodeCollection collection, string fullPath, StringComparison comparison = StringComparison.InvariantCultureIgnoreCase)
{
var foundNode = collection.Cast<TreeNode>().FirstOrDefault(tn => string.Equals(tn.FullPath, fullPath, comparison));
if (null == foundNode)
{
foreach (var childNode in collection.Cast<TreeNode>())
{
var foundChildNode = FindTreeNodeByFullPath(childNode.Nodes, fullPath, comparison);
if (null != foundChildNode)
{
return foundChildNode;
}
}
}

return foundNode;
}
}
}

关于c#-3.0 - 如何从 TreeNode.FullPath 数据获取实际的树节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2273577/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com