programming/MFC 썸네일형 리스트형 MFC의 배열클래스 [배열 클래스] 클래스 데이터 형식 CbyteArray Byte CDWordArray DWORD CobArray CObject* CPtrArray void * CStringArray Cstring CUIntArray UINT CwordArray WORD {배열 클래스 종류} (예제 CUintAray) CUIntArray arr; arr.SetSize(10); for(int i=0; i 더보기 PreTranslateMessage() 함수 사용 예제 위자드를 사용하면 금방 되는걸...요렇게 귀찮게 하는 방법도 있군요 -.-;;; BOOL CMainFrame::PreTranslateMessage(MSG* pMsg) { if (pMsg->message==WM_LBUTTONDBLCLK) //더블클릭 이벤트가 발생시. { MessageBox("마우스를 더블 클릭했습니다.", "마우스 메시지"); } return CFrameWnd::PreTranslateMessage(pMsg); } 더보기 MFC 기본 윈도우 프로시져 소스 #include // WinMain 함수에서 참조하므로 함수 원형을 선언한다. LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { WNDCLASS wndclass; HWND hwnd; MSG msg; // 윈도우 클래스를 초기화하고 운영체제에 등록한다. wndclass.style = CS_HREDRAW | CS_VREDRAW; // 스타일 지정 wndclass.lpfnWndProc = WndProc; // 윈도우 프로시저 이름 wndclass.cbClsExtra = 0; // 여분 메모리.. 더보기 이전 1 2 3 4 5 6 7 다음