8

此函数仅查找树视图中的第一个节点,其中包含SearchText.

private TreeNode SearchNode(string SearchText,TreeNode StartNode)
{
    TreeNode node=null;
    while (StartNode!= null)
    {
        if (StartNode.Text.ToLower().Contains(SearchText.ToLower()))
        {
            node = StartNode; 
            break;
        };
        if (StartNode.Nodes.Count != 0) 
        {
            node=SearchNode(SearchText, StartNode.Nodes[0]);//Recursive Search
            if (node != null)
            {
                break;
            };
        };
        StartNode = StartNode.NextNode;
    };
    return node;
} 

private void button1_Click(object sender, EventArgs e)
{
    string SearchText = this.textBox1.Text;
    if (SearchText == "")
    {
        return;
    };
    TreeNode SelectedNode = SearchNode(SearchText, treeView1.Nodes[0]);
    if (SelectedNode != null)
    {
        this.treeView1.SelectedNode = SelectedNode;
        this.treeView1.SelectedNode.Expand();
        this.treeView1.Select();
    };
}

我应该如何更改它,以便该功能不仅可以找到第一个节点,而且可以找到所有节点,每次单击时button1,它都会找到下一个节点直到最后,然后从头开始?所以我不应该从 搜索TreeView1.Nodes[0],而是从TreeView1.SelectedNode...

4

3 回答 3

15

像下面这样的东西应该可以添加到您的表单代码中。

    private List<TreeNode> CurrentNodeMatches = new List<TreeNode>();

    private int LastNodeIndex = 0;

    private string LastSearchText;


    private void button1_Click(object sender, EventArgs e)
    {


        string searchText = this.textBox1.Text;
        if (String.IsNullOrEmpty(searchText))
        {
            return;
        };


        if (LastSearchText != searchText)
        {
            //It's a new Search
            CurrentNodeMatches.Clear();
            LastSearchText = searchText;
            LastNodeIndex = 0;
            SearchNodes(searchText, treeView1.Nodes[0]);
        }

        if (LastNodeIndex >= 0 && CurrentNodeMatches.Count > 0 && LastNodeIndex < CurrentNodeMatches.Count)
        {
            TreeNode selectedNode = CurrentNodeMatches[LastNodeIndex];
            LastNodeIndex++;
            this.treeView1.SelectedNode = selectedNode;
            this.treeView1.SelectedNode.Expand();
            this.treeView1.Select();

        }
    } 

    private void SearchNodes(string SearchText, TreeNode StartNode)
    {
        TreeNode node = null;
        while (StartNode != null)
        {
            if (StartNode.Text.ToLower().Contains(SearchText.ToLower()))
            {
                CurrentNodeMatches.Add(StartNode);
            };
            if (StartNode.Nodes.Count != 0)
            {
                SearchNodes(SearchText, StartNode.Nodes[0]);//Recursive Search 
            };
            StartNode = StartNode.NextNode;
        };

    }

这有两个部分;

  1. 将所有节点收集到一个List<TreeNode>

  2. List<TreeNode>如果搜索没有改变,则翻页。如果搜索已更改,请清除列表并重置索引。

我已经使用在 .Net 4 下运行的 Windows 窗体对此进行了测试——它逐个遍历包含搜索文本的 TreeView 中的每个节点,直到到达最后一个节点。

于 2012-07-17T21:35:37.363 回答
2

您需要创建一个节点集合(如列表)并将每个找到的节点添加到该列表并返回它而不是单个节点。此外,您必须删除所有的 break 语句

于 2012-07-17T20:54:54.807 回答
0

我使用此解决方案进行搜索包含树节点上的文本

int currentSearch = 0;
int loop = 0;
int found = 0;

private bool FilterTreeNode(TreeNodeCollection nodes, string keyword)
{
    bool result = false;
    for (int i = 0; i < nodes.Count; i++)
    {
        if(result)
            break;
        loop++;
        if (currentSearch < loop)
        {
            currentSearch++;
            if (nodes[i].Text.Contains(keyword))
            {
                found++;
                _treeView.SelectedNode = nodes[i];
                _treeView.SelectedNode.Expand();
                _treeView.SelectedNode.EnsureVisible();
                OnFindResult(string.Format("Current result: {0} on total {1} nodes. FilePath: {2}",
                                    found, _treeView.GetNodeCount(true), nodes[i].Name));
                return true;
            }
        }
        result = FilterTreeNode(nodes[i].Nodes, keyword);
    }

    return result;
}
于 2016-01-21T01:48:57.137 回答