我必须根据单元格的值格式化(backcolor,forecolor,font style)radgrid的单元格.
例如,如果值为负,则将该单元格的前景颜色设置为红色.
任何人都可以告诉我这是如何实现的?
protected void grdName_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { GridDataItem item = (GridDataItem)e.Item; if (Convert.ToInt32(((DataRowView)item.DataItem)["Column"]) < value) { TableCell cell = item["Column"]; cell.BackColor = Color.PeachPuff; } } }