文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>MFC对话框的 回车

MFC对话框的 回车

时间:2010-07-14  来源:baozhao

使用下面的代码,导致原来的文本框输入回车无法换行

//屏蔽回车和cancel键,避免结束程序
BOOL CexamDlg::PreTranslateMessage(MSG* pMsg)
{
    // TODO: Add your specialized code here and/or call the base class
    if( pMsg->message ==WM_KEYDOWN)
    {
        if(pMsg->wParam == VK_ESCAPE||pMsg->wParam == VK_RETURN)
            return TRUE;
    }
    return CDialog::PreTranslateMessage(pMsg);
}


修改如下:
//屏蔽回车键,以防程序退出
void CexamDlg::OnOK(void)
{
}

//屏蔽cancel键,避免结束程序
BOOL CexamDlg::PreTranslateMessage(MSG* pMsg)
{
    // TODO: Add your specialized code here and/or call the base class
    if( pMsg->message ==WM_KEYDOWN)
    {
        if(pMsg->wParam == VK_ESCAPE)
            return TRUE;
    }
    return CDialog::PreTranslateMessage(pMsg);
}


相关阅读 更多 +
排行榜 更多 +
方块拼凑最新版 v1.0 安卓版

方块拼凑最新版 v1.0 安卓版

休闲益智 下载
方块拼凑最新版 v1.0 安卓版

方块拼凑最新版 v1.0 安卓版

休闲益智 下载
愤怒的小鸟爆破安卓版 v2.7.0 手机版

愤怒的小鸟爆破安卓版 v2.7.0 手机版

飞行射击 下载