C# winform Treeview控件搜索xml

发布于 2024-09-27 09:25:43 字数 123 浏览 2 评论 0原文

有人可以帮助我使用 C# 中的代码片段来搜索(最好是 linq)使用树视图控件加载的 XML 中的 XML 元素或属性吗?用户在 WinForm UI 中有一个搜索字符串选项卡,成功搜索后,包含元素或属性字符串的给定节点将突出显示。

Can someone help me with a code snippet in C# to search(linq preferably) for either XML element or attribute in a XML loaded using treeview control? The user has a search string tab in a WinForm UI and on a successful search the given node containing the element or attribute string is highlighted.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

睫毛上残留的泪 2024-10-04 09:25:43

试试这个:

var result = (from TreeNode node in treeView.Nodes
                      where textBox.Text.Contains(node.Text)
                      select node.Text);

        foreach (String search in result)
        {
            for (int i = 0; i < treeView.Nodes.Count - 1; i++)
            {
                if (treeView.Nodes[i].Text == search)
                    treeView.Nodes[i].BackColor = Color.Yellow;
            }
        }

Try this:

var result = (from TreeNode node in treeView.Nodes
                      where textBox.Text.Contains(node.Text)
                      select node.Text);

        foreach (String search in result)
        {
            for (int i = 0; i < treeView.Nodes.Count - 1; i++)
            {
                if (treeView.Nodes[i].Text == search)
                    treeView.Nodes[i].BackColor = Color.Yellow;
            }
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文