특정 행의 색을 변경합니다.
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 메서드에서 두번째 인자는 컬럼 이름을 작성하면 됩니다.
728x90
'C# > DevExpress' 카테고리의 다른 글
DevExpress / Winform 개별 차트 시리즈를 데이터에 바인딩 합니다 (0) | 2019.09.29 |
---|---|
DevExpress / Winform Unbound Column 생성하기 입니다. (0) | 2019.09.10 |
DevExpress / Winform TextEdit에서 천 단위로 끊어서 표기하기(ex: 2,300) (0) | 2019.09.10 |
DevExpress / Winform 유효성 검사를 합니다. (0) | 2019.07.11 |
DevExpress / Winform 로컬 드라이브에서 TreeList를 사용하여 디렉토리 구조를 확인합니다. (0) | 2019.06.16 |
댓글