下面的示例改变奇数行的外观。 通过 TreeList.Appearance 属性访问相应的外观属性。
下面的插图展示了运行结果。
C# | 复制代码 |
---|---|
treeList1.Appearance.OddRow.BackColor = Color.FromArgb(192, 192, 255);
treeList1.OptionsView.EnableAppearanceOddRow = true;
|
Visual Basic | 复制代码 |
---|---|
TreeList1.Appearance.OddRow.BackColor = Color.FromArgb(192, 192, 255)
TreeList1.OptionsView.EnableAppearanceOddRow = True
|