Dev express 笔记
1、设置treelist不同行的颜色
void treeList1_CustomDrawNodeCell(object sender, DevExpress.XtraTreeList.CustomDrawNodeCellEventArgs e) { if (e.Column == treeListColumn1) { if (e.CellValue.ToString() == "1") { e.Appearance.BackColor = Color.Red; e.Appearance.Options.UseBackColor = true; e.Appearance.ForeColor = Color.Yellow; e.Appearance.Options.UseForeColor = true; } } }
2、DataGridView 添加数据
作者:jinqier
出处:http://www.cnblogs.com/jinqier/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。