300x250 row color1 DevExpress / Winform 행의 색깔 변경하기 입니다. 특정 행의 색을 변경합니다. private void gridView_RowStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e) { var row = this.gridView.GetRowCellDisplayText(e.RowHandle, "ID"); if(row.Equals("aaa")) { e.Appearance.BackColor = Color.DarkOrange; } } GetRowCellDisplayText 메서드에서 두번째 인자는 컬럼 이름을 작성하면 됩니다. 2019. 9. 10. 이전 1 다음 300x250