반응형
BOOL CTestDlg::PreTranslateMessage(MSG* pMsg)Static Control 속성에서 Notify 가 TRUE 가 되어 있어야 한다.
{
// TODO: Add your specialized code here and/or call the base class
if (pMsg->message == WM_LBUTTONDOWN)
{
if (pMsg->hwnd == GetDlgItem(IDC_STATIC_TEXT)->GetSafeHwnd())
AfxMessageBox("Left Button Down");
}
else if (pMsg->message == WM_RBUTTONDOWN)
{
if (pMsg->hwnd == GetDlgItem(IDC_STATIC_TEXT)->GetSafeHwnd())
AfxMessageBox("Right Button Down");
}
return CDialog::PreTranslateMessage(pMsg);
}
반응형
'C & C++ > MFC 컨트롤' 카테고리의 다른 글
날짜 구하기 (0) | 2011.10.26 |
---|---|
리스트 컨트롤 색상 다루기 (0) | 2011.10.26 |
Static Control 의 배경을 투명하게 만들기 (0) | 2011.10.25 |
Static 에 텍스트를 쓸때 겹쳐서 나올 경우 (0) | 2011.10.25 |
마우스 드레그 하여 다이얼 로그 이동 (0) | 2011.10.25 |
댓글