下面的示例代码展示了如何启用打印外观,并且通过 TreeList.AppearancePrint 属性定制偶数节点的背景色。

下面的插图展示了运行结果。

C#CopyCode image复制代码
treeList1.OptionsPrint.UsePrintStyles = true;
treeList1.AppearancePrint.EvenRow.BackColor = Color.FromArgb(255, 192, 128);
Visual BasicCopyCode image复制代码
TreeList1.OptionsPrint.UsePrintStyles = True
TreeList1.AppearancePrint.EvenRow.BackColor = Color.FromArgb(255, 192, 128)