如何将数据视图绑定到树视图?

发布于 2024-11-01 13:53:59 字数 133 浏览 3 评论 0原文

我有一个数据视图,它是 id 和 id 的集合。姓名。我想以层次结构的形式将该数据视图绑定到树视图控件。我想将名称字段显示为节点上的显示文本我想将 id 作为值成员绑定到树节点。

是否可以?如果是的话该怎么做?

谢谢..

I'm having a dataview which is collection of id & name. And i want to bind that dataview to the treeview control in the form of hirarchy. And i want to show the name field as the display text on the node & i want to bind id as a value member to the tree node.

IS it possible? If yes then how to do this?

thanks..

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

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

发布评论

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

评论(1

紅太極 2024-11-08 13:53:59

此代码片段将在树中显示一个数据视图,其中每一行都是一个新节点,其子节点具有列名称,后跟该行中该列的字段数据:

var datasource = myDataView.ToTable();

treeView.BeginUpdate();

// Iterate throght the DataRow Collection
foreach (DataRow Row in datasource.Rows)
{
    TreeNode Node = treeView.Nodes.Add("Node for "+ Row.Field<string>("ColumnNameForNode"));

    if (Node != null)
    {
        int iCol = 0;

        foreach (var item in Row.ItemArray)
        {
            string itemString = item as string;
            if (itemString != null && itemString.Length > 0)
            {
                Node.Nodes.Add(datasource.Columns[iCol].ColumnName + " - " + itemString);
            }

            iCol++;
        }
    }                       
}

treeView.EndUpdate();

This snippet will display a dataview in a tree, where each row is a new node with children having column names followed by the field data for that column in the row:

var datasource = myDataView.ToTable();

treeView.BeginUpdate();

// Iterate throght the DataRow Collection
foreach (DataRow Row in datasource.Rows)
{
    TreeNode Node = treeView.Nodes.Add("Node for "+ Row.Field<string>("ColumnNameForNode"));

    if (Node != null)
    {
        int iCol = 0;

        foreach (var item in Row.ItemArray)
        {
            string itemString = item as string;
            if (itemString != null && itemString.Length > 0)
            {
                Node.Nodes.Add(datasource.Columns[iCol].ColumnName + " - " + itemString);
            }

            iCol++;
        }
    }                       
}

treeView.EndUpdate();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文