일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- design pattern
- 파이썬
- 리액트
- DataGridView
- kubernetes
- mybatis
- 리팩토링
- Kotlin
- AWS
- 스프링
- 자바
- docker
- c#
- VOA
- github
- 도커
- 쿠버네티스
- git
- 마이바티스
- 스프링부트
- Spring
- Spring Boot
- springboot
- Python
- 코틀린
- Java
- machine-learning
- MySQL
- react
- Winform
Archives
- Today
- Total
보뇨 다이어리
특정 header column 하단 정렬하기 본문
반응형
dataGridView 쪽 특정 header column 을 하단정렬하고싶은데 기본베이스가 이거임
1 | this.dataGridView_emplCost_excel.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.BottonCenter | cs |
이건 하단정렬되는대신 모든 컬럼을 하단정렬하는것이기 떄문에 문제가 생김
여기서 간단히 생각해보면 답이 나옴
바로 아래와 같이 해주면 특정 헤더컬럼쪽 하단정렬이 가능
1 | this.dataGridView_emplCost_excel.Columns[j].HeaderCell.Style.Alignment = DataGridViewContentAlignment.BottomCenter; | cs |
** 추가적으로 기본정렬은 middle center 이다.
반응형
'컴퓨터 관련 > C# 정보' 카테고리의 다른 글
Dictionary 클래스에 key 값 정렬하기 (0) | 2018.11.02 |
---|---|
dataGridView drawing 스크롤에 따라 새로그리기 (0) | 2018.11.01 |
이 설치 프로그램을 실행하려면 .NET Framework v4.6.1이(가) 있어야 합니다 에러 (0) | 2018.08.21 |
dataGridView RowHeader 에 인덱스값 넣기 (0) | 2018.08.14 |
dateTimePicker 년월일로 받기 (0) | 2018.08.14 |