0

我如何以编程方式将颜色分配给 Rad Grid 视图 sucn 奇数列获得一种颜色,偶数列获得另一种颜色,任何想法都可以。

4

1 回答 1

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;
        }
    }
}
于 2012-10-12T13:49:47.540 回答