C# [C#] DataGridView 홀수/짝수열 배경색 다르게 지정
페이지 정보
본문
for (int i = 1; i < this.Rows.Count; i++)
{
if (i % 2 != 0)
{
this.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(240, 255, 240);
}
else
{
this.Rows[i].DefaultCellStyle.BackColor = Color.White;
}
}
- 다음글C# 개발/폴더 선택 창 22.09.22
댓글목록
등록된 댓글이 없습니다.