我的代码如下:
[C#] 纯文本查看 复制代码
private void BindTreelist()
{
DataSet ds = GetDataTable();
treeList1.DataSource = ds.Tables[0].DefaultView;
treeList1.KeyFieldName = "CategoryCode";
treeList1.ParentFieldName = "CategoryParent";
treeList1.LookAndFeel.UseDefaultLookAndFeel = false;
treeList1.LookAndFeel.UseWindowsXPTheme = true;
treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
treeList1.RootValue = "";//顶级树结点的值
treeList1.PopulateColumns();
treeList1.BestFitColumns();
treeList1.ExpandAll();
}
指定为KeyFieldName和ParentFieldName的两个列被自动隐藏掉了,其他所有的列都可以正常显示。
这个是TreeList控件的默认设置么?可以修改么?我想要显示列CategoryCode(分类编号)
CategoryParent(父节点)要怎么做呢
|