我怎样才能以编程方式将颜色分配给Rad Grid视图,奇数列获得一种颜色,偶数颜色可以获得另一种颜色任何想法。
答案 0 :(得分:0)
请尝试使用以下代码段。
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
GridDataItem item = e.Item as GridDataItem;
if (item.ItemIndex % 2 == 0)
{
item.BackColor = System.Drawing.Color.Red;
}
}
}