C# 에서 사용하는 DataGridView의 폰트는 각각의 부분에 지정할 수 있습니다.
1) 전체 폰트 적용
this.dataGridView1.Font = new Font("굴림", 9, FontStyle.Regular);
2) Colum 헤더 부분 적용
this.dataGridView1.ColumnHeadersDefaultCellStyle.Font = new Font("굴림", 9, FontStyle.Bold);
3) Row 헤더 부분 적용
this.dataGridView1.RowHeadersDefaultCellStyle.Font = new Font("굴림", 9, FontStyle.Bold);
4) Cell 내용 부분 적용
this.dataGridView1.DefaultCellStyle.Font = new Font("굴림", 9, FontStyle.Bold);
어때요? 도움이 되셨나요?
늘 그렇듯, 모두 모두 화이팅 입니다 !!!
그런데 혹시 가슴이 답답해 명상이나 힐링이 필요하시다면?
아래로 한번 들러 주세요~ ^^
https://youtu.be/oRHsThgQdzk?feature=shared
'C#' 카테고리의 다른 글
C# WPF Popup Window 띄우기 (0) | 2023.05.16 |
---|---|
C# DataGridView 꾸미기 (0) | 2023.05.16 |
C# DataGridView에 색깔 설정하는 방법 (0) | 2023.05.16 |
C# MDI 창에서 Child Form 을 띄우는 방법 (0) | 2023.05.16 |
C# Winform 어플리케이션 종료 (1) | 2023.05.16 |
댓글