码迷,mamicode.com
首页 > 编程语言 > 详细

MFC PreTranslateMessage介绍

时间:2017-12-18 01:31:53      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:mes   key   mfc   font   message   hello   oge   tran   strong   

PreTranslateMessage介绍

BOOL CMFCHelloDlg::PreTranslateMessage(MSG* pMsg)

{

if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_DOWN)

{

SetWindowText(_T("按下下键"));

}

if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_ESCAPE)

{

return TRUE;

}

return CDialogEx::PreTranslateMessage(pMsg);

}

 

MFC PreTranslateMessage介绍

标签:mes   key   mfc   font   message   hello   oge   tran   strong   

原文地址:http://www.cnblogs.com/ming-michelle/p/8053808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!