1-) C# Devexpress Athena - Treelist ayarları1
1-) tüm pane'de arama yapmak için ve checkbox olması için
option filter -> filter mode -> Smart -> yap
optionbehavior -> autoınceramentseach-> true
optionbehavior -> autoınrecursivenodechecking-> true
optionbehavior -> enablefiltering-> true
optionbehavior -> expandnodesonincremantsearch-> true
optionview -> showautofilterrow - > true
optionview -> showautocheckboxes - > true
2-) node veri silmek için
for (int i = 0; i < treeList1.Nodes[0].Nodes.Count; i++) {
if (treeList1.Nodes[0].Nodes[i].GetValue(0).ToString().Equals("ACENTA")) {
treeList1.Nodes[0].Nodes.RemoveAt(i);
}
}