MFC - 다이얼로그 생성시 발생되는 메세지들...
다이얼로그가 생성될 때 발생되는 메세지의 순서로는
DoModal()
PreSubclassWindow()
OnNcCreate()
OnNcCalcSize()
OnCreate()
OnSize()
OnMove()
OnSetFont()
OnInitDialog()
OnWindowPosChanging()
OnMove()
OnWindowPosChanged()
OnWindowPosChanging()
OnNcActivate()
OnActivate()
OnShowWindow()
OnWindowPosChanging()
OnNcPaint()
OnEraseBkgnd()
OnChildNotify()
OnCtlColor()
OnWindowPosChanged()
OnPaint()
OnCtlColor()
OnCtlColor()
OnNcHitTest()
OnSetCursor()
PreTranslateMessage()
OnMouseMove()
OnNcHitTest()
OnSetCursor()
PreTranslateMessage()
클래스 위자드에서 메세지 필터를 Window로 주고 발생하는 모든 메세지에 대해서
간단한 문자 출력용 핸들러를 주었다.
이 상황에서 아무것도 없는 기본 다이얼로그 화면을 DoModal() 함수로 띄웠을 때
발생하는 메세지들을 캡쳐한것이다.
'컴퓨터 공학 자료(학부) > OpenGL' 카테고리의 다른 글
3d max 파일 loader for OPENGL (0) | 2010.05.25 |
---|---|
그래픽스 MFC+openGL 연동 그림판 (0) | 2010.05.04 |
OpenGL+MFC 연동 그림판 참고 자료들 (0) | 2010.05.04 |
OpenGL이용한 행성의 공전,자전 구현 (0) | 2010.04.21 |
일리히트 비쥬얼스튜디오2008에서 사용시 (0) | 2010.03.23 |