폰트1 C#에서 DataGridView 폰트 지정 방법 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.. 2023. 5. 16. 이전 1 다음