怎么样使用DEV的TreeList控件?
隐藏某列:
this.treeListUser.Columns[3].VisibleIndex = -1;
绑定:将数据源指定到一个临时表
this.treeListUser.DataSource = dtUserInfo;
this.treeListUser.PopulateColumns();
不允许编辑,设为只读:
dtUserInfo.Columns[0].ReadOnly = true;
本文地址:http://www.45fan.com/a/question/71221.html