다이얼로그에 툴팁추가
//헤더 파일에 선언
CToolTipCtrl _tooltip;
//OnInitDialog 에서 생성 및 문자열 추가
_tooltip.Create(this);
_tooltip.AddTool(&m_start, "시작합니다.");
//PreTranslateMessage에서 처리
switch(pMsg->message) // 키보드를 눌렀을 때의 처리
{
case WM_KEYDOWN:
if(pMsg->wParam == VK_ESCAPE) // ESC키 처리
return TRUE;
else if(pMsg->wParam == VK_RETURN) // Enter키 처리
return TRUE;
case WM_MOUSEMOVE:
_tooltip.RelayEvent(pMsg);
}
'소프트웨어' 카테고리의 다른 글
초간단 음원재생 (0) | 2010.12.08 |
---|---|
프로그램 중복 실행 방지 (2) | 2010.11.12 |
자신의 절대경로 구하기 (2) | 2010.11.12 |