BOOL CMyEdit::PreTranslateMessage(MSG* pMsg)
{
 // TODO: 在此添加专用代码和/或调用基类

 if (pMsg->message == WM_KEYDOWN)
 {
  if (pMsg->wParam == VK_RETURN)
  {
   GetWindowText(stringEditValue);
   return true;
  }
 }

 return CEdit::PreTranslateMessage(pMsg);
}

怎么样添加换行换列函数!

相关文章:

  • 2021-08-26
  • 2021-12-02
  • 2021-12-02
  • 2021-12-02
  • 2022-12-23
  • 2021-04-08
  • 2021-09-28
  • 2022-12-23
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2021-11-18
  • 2021-05-06
  • 2021-11-24
  • 2021-11-13
  • 2021-05-03
相关资源
相似解决方案