728x90
C# 에서 사용하는 DataGridView의 폰트를 각각의 부분에 지정할수 있다.
// 전체적으로 폰트 적용하기
this.dataGridView1.Font = new Font("Tahoma", 10, FontStyle.Regular);
// Colum 의 해더부분을 지정하기
this.dataGridView1.ColumnHeadersDefaultCellStyle.Font = new Font("Tahoma", 10, FontStyle.Bold);
// Row 해더부분을 지정하기
this.dataGridView1.RowHeadersDefaultCellStyle.Font = new Font("Tahoma", 10, FontStyle.Bold);
// Cell 내용부분을 지정하기
this.dataGridView1.DefaultCellStyle.Font = new Font("Tahoma", 10, FontStyle.Bold);
728x90
'C# > dataGridView' 카테고리의 다른 글
C# dataGridView cell 툴팁(Tooltip) (0) | 2016.01.29 |
---|---|
C# dataGridView 데이터 업데이트 처리 (화면 갱신 방지) (1) | 2016.01.25 |
C# dataGridView 에 엑셀 읽어들이기 (엑셀 헤더 검사) (0) | 2015.12.06 |
C# datagGridView CSV 파일로 내보내기 (0) | 2015.12.05 |
C# dataGridView 높이 변경 (0) | 2015.10.18 |