반응형 다이얼로그1 [MFC] 다이얼로그에서 단축키 써보자 1. 다이얼로그 클래스안에 HACCEL m_hAccel 이란 멤버 변수를 만든다 2. 다이얼로그 클래스 OnInitDialog() 안에 아래 내용추가 m_hAccel = LoadAccelerators(AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_ACCELERATOR) ); * IDR_ACCELERATOR 는 단축키 리소스 이름 3. 다이얼로그 클래스에 PreTranslateMessage 메시지 추가 BOOL 다이얼로그클래스::PreTranslateMessage(MSG* pMsg) { // TODO: Add your specialized code here and/or call the base class HWND hWnd=GetSafeHwnd(); if (TranslateA.. 2007. 2. 17. 이전 1 다음 728x90