|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
void Project::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// TODO: Add your message handler code here and/or call default
if (nChar == "A" || nChar == "a")
m_strKey.Format("Pressed %c", nChar);
Invalidate();
CView::OnChar(nChar, nRepCnt, nFlags);
}
添加消息映射WM_CHAR,并增加了类变量m_strKey,填写了以上代码;
另void Project::OnDRAW()中添加:
pDC->TextOut(100,100,m_strKey);
但是运行,摁下A或a无反应?Why?
我用的是VC++ 6.0。 |
|