我希望通過該代碼僅對空單元格進行着色。 但我得到的所有細胞色。 誰能告訴我哪裏是我的錯..不能得到空白單元格只有顏色
private void gridView3_RowCellStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e)
{
GridView View = sender as GridView;
if(e.Column.FieldName == "First Name")
{
string category = View.GetRowCellDisplayText(e.RowHandle, View.Columns["First Name"]);
if(category != "")
{
e.CellStyle.BackColor = Color.DeepSkyBlue;
}
}
}
問題是我不能使用「外觀」 「DevExpress.XtraGrid.StyleFormatCondition」不包含「外觀」的定義 是因爲我使用Visual Studio 2003嗎? – Nejthe
@Nejthe - 不,與此無關。要麼你有一個較舊版本的DevExpress控件。無論哪種方式,如果您的控件有問題,請在他們的支持論壇上詢問。 – dutzu
好的謝謝你..我感謝你的幫助 – Nejthe