博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++语言 无法通过Esc键关闭窗体
阅读量:4984 次
发布时间:2019-06-12

本文共 513 字,大约阅读时间需要 1 分钟。

BOOL CWelcomeDlg::PreTranslateMessage(MSG* pMsg) //Called to filter messages before they are dispatched{    // TODO: Add your specialized code here and/or call the base class    if(pMsg->message == WM_KEYDOWN && pMsg->wParam == 27)    {        CString s;        s.Format("The wParam= %d The message = %d", pMsg->wParam, pMsg->message);        MessageBox(s);        return NULL;    }    return CDialog::PreTranslateMessage(pMsg);} 在消息调用之前的函数

转载于:https://www.cnblogs.com/pythonschool/archive/2012/11/15/2770102.html

你可能感兴趣的文章
dev 控件之 gridcontrid 应用
查看>>
什么是同一网段
查看>>
温故而知新
查看>>
c# 菱形,三角形
查看>>
java之MD5加密
查看>>
Codeforces Round #432 (Div. 2) ABC
查看>>
常见积性函数(转自百科)
查看>>
luogu_1010 幂次方
查看>>
codevs1231 最优布线问题
查看>>
python连接数据库(2)——mongodb
查看>>
为什么黑客都不用鼠标?你听说过Linux吗?
查看>>
eclipse安装CheckStyle,SpotBugs,findSecuritybugs插件
查看>>
ZBrush通过绘制层得到子物体
查看>>
算法学习之剑指offer(八)
查看>>
Genymotion虚拟机的全面了解
查看>>
Java设置session超时(失效)的时间
查看>>
deep learning入门:感知机
查看>>
C++四则运算出题器---有答案版
查看>>
2.VUE前端框架学习记录二
查看>>
洛谷P3703 【[SDOI2017]树点涂色】
查看>>