728x90
MFC Keyboard & Message
Keyboard 윈도우를 종료하는 네가지 방법
Alt + X 또는 Alt + x 로 윈도우 종료하는 단축키
void CKeyMoveView::OnSysChar(UINT nChar, UINT nRepCnt, UINT nFlags) //단축키 처리 키보드로 구현
{
// TODO: Add your message handler code here and/or call default
if(nChar == 'x' || nChar == 'X')
{
AfxMessageBox(TEXT("Alt + X"));
AfxGetMainWnd()->PostMessage(WM_CLOSE);
//윈도우를 종료하는 여러가지 방법
//AfxGetMainWnd() -> PostMessage(WM_CLOSE);
//GetParentFrame() -> PostMEssage(WM_CLOSE);
//theApp.m_pMainWnd -> PostMessage(WM_CLOSE);
//theApp.GetMainWnd() -> PostMessage(WM_CLOSE);
}
}
'컴퓨터과학[2-1] > knou_[2-1]Visual_C' 카테고리의 다른 글
MFC Mouse [WM_MOUSEWHEEL, WM_LBUTTONDBLCLK] (0) | 2015.04.06 |
---|---|
MFC Mouse [WM_MOUSEMOVE, WM_PAINT]마우스 좌표 출력하기 (0) | 2015.04.06 |
MFC Keyboard 방향키로 차일드 윈도우의 크기를 조절해 보자 (0) | 2015.04.02 |
MFC Keyboard 방향키로 차일드 윈도우를 이동해보자 (0) | 2015.04.02 |
MFC Keyboard & Message (0) | 2015.04.01 |
댓글