treeview怎么绑定数据
treeList.Columns.Clear();//清除列treeList.DataSource = dt;//设置数据源treeList.ClearNodes();//清除节点treeList.KeyFieldName = keyValue;//要显示的列名,须与数据源中的列名相同treeList.ParentFieldName = parentValue;//上级节点的列名treeList.Columns[showColumn].Caption = treeTitle;//设置标题
数据源里面要有pId,在标记中指定Id,pId的字段,指定数据源就可以了。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
每个人心里都住着一个人,或眷念,或暗恋,或想念。
文章 0 评论 0
接受
发布评论
评论(2)
treeList.Columns.Clear();//清除列
treeList.DataSource = dt;//设置数据源
treeList.ClearNodes();//清除节点
treeList.KeyFieldName = keyValue;//要显示的列名,须与数据源中的列名相同
treeList.ParentFieldName = parentValue;//上级节点的列名
treeList.Columns[showColumn].Caption = treeTitle;//设置标题
数据源里面要有pId,在标记中指定Id,pId的字段,指定数据源就可以了。