|
Binding to a column
Tuesday, 08 September 2009
In the treeview with columns, every node control should be bound to a column, where it is to be display. To do that, set the ColumnId node control property to a target column Id property value or set the Column property to a column instance. Example: NodetextBox tb = new NodeTextBox() // bind node control using the Id column property. tb.ColumnId = tree.Columns[0].Id; // bind node control using the column instance. TreeColumn col = tree.Columns[0]; tb.AttachToColumn(col);
Additional API reference
Properties
|
|