본문 바로가기
C#/DevExpress

DevExpress / Winform 행의 색깔 변경하기 입니다.

by HyunS_ 2019. 9. 10.

특정 행의 색을 변경합니다.

 

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

댓글