2012-11-11 6 views

답변

7
당신은 RowStyle 이벤트 처리기에서 행의 색 그라데이션을 변경할 수 있습니다

:

private void myGridView_RowStyle(object sender, 
         DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e) 
{ 
    e.Appearance.BackColor = Color.Green; 
    e.Appearance.BackColor2 = Color.LightGreen; 
} 

참조 : Customizing Appearances of Individual Rows and Cells

관련 문제