728x90
CheckedListBoxControl 항목은 아래처럼 기본적으로 세로로 나열되어
나타단다.
이를 가로로 정렬되어 보이게 하려면 MultiColumn 값을 true 로 하면
아래 처럼 가로로 정렬된다.(컨트롤 높이 조정필요)
this.checkedListBoxControl.MultiColumn = true;
this.checkedListBoxControl.Height = 28;
유의할 점은 데이터들이 모두 세로로 정렬되기위한 공간이 충분한 경우 무조건 세로로 정렬된다.
this.checkedListBoxControl.MultiColumn = true;
위 코드만 처리한 경우 아래처럼 높이가 세로로 정렬되도 충분하여 세로로 정렬된다.
세로정렬로 모두 표현이 힘든 경우 가로로 정렬이 된다고 보면된다.
728x90
'DevExpress' 카테고리의 다른 글
[DevExpress] XtraScrollableControl 에서 컨트롤 삽입 후에도 휠로 스크롤 가능하게 하기 (0) | 2019.09.19 |
---|---|
[DevExpress] CheckedComboBoxEdit 에 PlaceHolderText 적용하기 (0) | 2019.07.02 |
[DevExpress] CheckedListBoxControl - BackColor 를 Transparent 로 지정하기 (0) | 2019.06.06 |
[DevExpress] SearchControl - ButtonClick (0) | 2019.05.21 |
[DevExpress] SearchControl (0) | 2019.05.20 |