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
- safearea
- ロールパーク
- 駐車場の場所
- appleid
- localizing
- iphone
- storyboard
- RollParking
- ventura
- swift
- cerificate
- Xcode11
- iOS12
- iOS13
- ios
- code=13
- NationalPetition
- nslocalizedDescription=query cancelled
- 駐車場
- pan gesture
- 롤파킹
- query cancelled
- error domain
- SceneDelegate
- iPadOS13
- 스토리보드
- Xcode11.1
- swift4
- iPadOS
- Xcode
Archives
- Today
- Total
HoonStyle
[MFC]List Control Height(높이) 변경 본문
List Control에서 높이를 늘리거나 줄이고 싶을때 사용하면 됩니다.
1)List Control Properties
1. [Styles] -> [View] Report 설정.
2. Owner draw fixed = true.
2)WM_MEASUREITEM 추가
3)생성된 OnMeasureItem() 함수에서
if(nIDCtl == IDC_LIST)
{
lpMeasureItemStruct->itemHeight += 25; // - 연산 설정하면 높이가 줄어듭니다.
}
CDialog::OnMeasureItem(nIDCtl, lpMeasureItemStruct);
4)해당 OninitDialog()에서
m_ctrlList.ModifyStyle(LVS_OWNERDRAWFIXED, 0, 0);
m_ctrlList.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES);
'Programming' 카테고리의 다른 글
8 Bit Serial 통신 (0) | 2014.01.14 |
---|---|
'hcw'을(를) 찾을 수 없습니다. (0) | 2013.05.31 |
[MFC]List Control 색 입히기 (0) | 2012.08.21 |
FileTracker : error FTK1011 (0) | 2012.06.04 |
error C2440: 'static_cast' : 'void (__thiscall CDlgAlarms::* )(WPARAM,LPARAM)'에서 'LRESULT (__thiscall CWnd::* )(WPARAM,LPARAM)'(으)로 변환할 수 없습니다. (2) | 2012.03.13 |