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
- net
- 블루투스 헤드셋
- docker
- protobuf-c
- VS2008
- M8200
- ClickOnce
- GDI
- php
- self-signed ssl
- 기념일관리
- .net
- C#
- 와이브로
- 데이터 전달
- Font
- C/C++
- plcrashreporter
- 크래시로그
- 자바스크립트
- 한 번만 실행
- 설치제거
- JavaScript
- Antialiasing
- crashlog
- phpmailer
- MFC
- EUC-KR
- API
- PDA
Archives
- Today
- Total
~☆~ 우하하!!~ 개발블로그
MFC 4.x 와 MFC 9.x 의 차이점 (스핀컨트롤 CreateEx) 본문
728x90
반응형
MFC 4.x 에서 코딩할 경우 CSpinButtonCtrl::CreateEx 는 다음과 같이 정의되어 있다.
BOOL CreateEx(DWORD dwExStyle, LPCTSTR lpszClassName,
LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect,
CWnd* pParentWnd, UINT nID,
LPVOID lpParam = NULL);
위 정의는 CSpinButtonCtrl 클래스의 부모 클래스인 CWnd 클래스의 멤버함수 정의이다.
MFC 9.x 에서는
CSpinButtonCtrl 의 멤버함수인 CreateEx 를 사용하게 된다.
이 멤버함수의 정의는 다음과 같다.
// Generic creator allowing extended style bits
virtual BOOL CreateEx(_In_ DWORD dwExStyle, _In_ DWORD dwStyle, _In_ const RECT& rect,
_In_ CWnd* pParentWnd, _In_ UINT nID);
굳이 lpszClassName 과 lpszWindowName 파라미터값을 입력하지 않아도 된다.
스핀버튼 컨트롤의 클래스이름은 msctls_updown32 이다.
BOOL CreateEx(DWORD dwExStyle, LPCTSTR lpszClassName,
LPCTSTR lpszWindowName, DWORD dwStyle,
const RECT& rect,
CWnd* pParentWnd, UINT nID,
LPVOID lpParam = NULL);
위 정의는 CSpinButtonCtrl 클래스의 부모 클래스인 CWnd 클래스의 멤버함수 정의이다.
MFC 9.x 에서는
CSpinButtonCtrl 의 멤버함수인 CreateEx 를 사용하게 된다.
이 멤버함수의 정의는 다음과 같다.
// Generic creator allowing extended style bits
virtual BOOL CreateEx(_In_ DWORD dwExStyle, _In_ DWORD dwStyle, _In_ const RECT& rect,
_In_ CWnd* pParentWnd, _In_ UINT nID);
굳이 lpszClassName 과 lpszWindowName 파라미터값을 입력하지 않아도 된다.
스핀버튼 컨트롤의 클래스이름은 msctls_updown32 이다.
반응형
'MFC' 카테고리의 다른 글
MFC CRect 클래스의 IntersectRect 함수에 대해서 (1) | 2009.02.02 |
---|---|
TRACE (ANSI vs UNICODE) (0) | 2008.12.10 |
메시지를 통해서 double 형 값을 전달하는 방법 (0) | 2008.11.25 |
CDialogBar 로부터 상속받은 클래스에서 포함 컨트롤 초기화하기 (0) | 2008.11.13 |
CString 을 const char* 로 형변환 방법 (0) | 2008.10.17 |