EMDI는 지금도 개발중

C# : DataGridView Cell 밑줄 넣기 Underline 본문

언어/C#

C# : DataGridView Cell 밑줄 넣기 Underline

EMDI 2021. 2. 26. 15:53

만약 DataGridView에서 특정 Cell들만 밑줄(underline)을 넣고 싶은 경우 참고하시기 바랍니다.

// 내가원하는 Columns의 index값과 기본 font의 값이 필요
DataGridView.Columns[i].DefaultCellStyle.Font = new Font(DataGridView.Columns[i].DefaultCellStyle.Font, FontStyle.Underline);

// 만약 특정 셀의 Font가 없는 경우는 아래의 코드 참고
DataGridView.Columns[i].DefaultCellStyle.Font = new Font(DataGridView.DefaultCellStyle.Font, FontStyle.Underline);

// 실제 예시
dgvODBCList.Columns[1].DefaultCellStyle.Font = new Font(dgvODBCList.DefaultCellStyle.Font, FontStyle.Underline);

 

Comments