반응형 gridcellcolor 변경1 [C# DevExpress] GridControl 특정 Row, Cell 색 변경 C# DevExpress GridControl의 특정 Row, 특정 Cell의 색을 변경하는 예제입니다. [특정 Row Color 변경] - 소스코드 GridView에 RowStyle 이벤트를 추가하는 부분과 gridView1_RowStyle() 함수를 참고하시면 됩니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 private void Form1_Load(object sender, EventArgs e) { DataTable table = CreateData(); this.gridControl1.DataSource = table; //GridView에 RowStyle 이벤트 추가 (this.gridControl1.MainView as.. 2018. 4. 12. 이전 1 다음 반응형