0
我想只強調一個單元,而不是整個排然而,當我使用此代碼:ASP.NET/C# - ASPxGridView條件格式
public bool ProcessSelectionChangedOnServer { get; set; }
protected void ASPxGridView1_HtmlDataCellPrepared(object sender,
DevExpress.Web.ASPxGridViewTableDataCellEventArgs e)
{
if (e.GetValue("BusType").ToString() == "CUS")
{
e.Cell.BackColor = System.Drawing.Color.LightCyan;
}
}
這似乎凸顯整排,其中BusType
等於「CUS」。任何人都可以將我指向正確的方向嗎?提前致謝。
編輯:我試圖添加
e.DataColumn.CellStyle.BackColor = System.Drawing.Color.LightCyan;
並刪除e.Cell.BackColor
線但沒有指明有任何