mfc vc++ 如何在对话框中的一个编辑框中实现画图的功能 比如话条随意的曲线? 不是在一个单文档中实现
展开全部
用MFC CLASSWIZARD添加PreTranslateMessage
BOOL C********::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
//edit控件m_edit响应鼠标移动事件
if (pMsg->hwnd == m_edit.m_hWnd && pMsg->message == WM_MOUSEMOVE)
{
//画图操作
}
return CDialog::PreTranslateMessage(pMsg);
}
BOOL C********::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
//edit控件m_edit响应鼠标移动事件
if (pMsg->hwnd == m_edit.m_hWnd && pMsg->message == WM_MOUSEMOVE)
{
//画图操作
}
return CDialog::PreTranslateMessage(pMsg);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询