Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- forof문
- 장고웹
- Python
- 다른테이블에속해있습니다
- webkitrecognition
- 자바스크립트날짜
- 이행은이미다른테이블에속해있습니다
- cmd명령어
- Android
- 사례관리
- R데이터분석
- sqlite
- 장고프로젝트
- speechAPI
- 자바스크립트날짜형식
- 오류종류
- 자바스크립트날짜get
- 자바스크립트for문
- 자바스크립트forinforof차이
- 개발
- 이행은이미다른
- 자바스크립트수학
- 안드로이드
- javaScriptError
- 장고
- 청소년복지론
- PostgreSQL
- speechtoText
- 파이썬
- 장고웹프로젝트
Archives
- Today
- Total
EMDI는 지금도 개발중
C# : DataGridView Cell 밑줄 넣기 Underline 본문
만약 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);
'언어 > C#' 카테고리의 다른 글
C# : 체크콤보박스 창사이즈 늘리기 CheckedComboBoxEdit Popup Resize (0) | 2021.03.03 |
---|---|
C# : LookUpEdit SelectIndex=0 첫 번째 Row 선택하기 (0) | 2021.03.03 |
C# : TreeList 특정 노드 찾기 및 TreeListNode 추가하기 : FindNodeByFieldValue (0) | 2020.12.31 |
C# : OpenFileDialog 파일 불러오기 엑셀 열기 및 DataTable 데이터 받기 How to export Excel file to DataTable (0) | 2020.12.30 |
C# : SEED 비밀번호 암호화 처리 (1) | 2020.05.08 |
Comments