■ ListView 클래스에서 행 배경색을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System.Drawing; using System.Windows.Forms; #region 행 배경색 설정하기 - SetRowBackgroundColor(listView, oddRowColor, evenRowColor) /// <summary> /// 행 배경색 설정하기 /// </summary> /// <param name="listView">ListView 객체</param> /// <param name="oddRowColor">홀수 행 색상</param> /// <param name="evenRowColor">짝수 행 색상</param> public void SetRowBackgroundColor(ListView listView, Color oddRowColor, Color evenRowColor) { foreach(ListViewItem listViewItem in listView.Items) { if((listViewItem.Index % 2) == 0) { listViewItem.BackColor = evenRowColor; } else { listViewItem.BackColor = oddRowColor; } } } #endregion |