MFC] WM_SIZING 메세지는 PreTranslateMessage(MSG* pMsg)로 처리할 수 있을까?
카테고리 없음 / 2016. 2. 6. 17:30
BOOL xxx::PreTranslateMessage(MSG* pMsg)
{
switch(pMsg->message)
{
case WM_SIZING:
TRACE("WM_SIZING\r\n");
break;
}
...
}
결론은 안된다. 메세지처리 함수를 추가하던가, 서브클래싱을 하던가 해야함...