关于DEV的TreeList控件的使用(1)
关于DEV的TreeList控件的使用(1),关于DEV的TreeList控件的使用(1)
隐藏某列:
this.treeListUser.Columns[3].VisibleIndex = -1;
绑定:将数据源指定到一个临时表
this.treeListUser.DataSource = dtUserInfo;
this.treeListUser.PopulateColumns();
不允许编辑,设为只读:
dtUserInfo.Columns[0].ReadOnly = true;