如何处理 CEdit 控件中的 Return 键?
如何处理 CEdit
控件中的 Return 键 (VK_RETURN
)? CEdit
控件的父级是 CDialog
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何处理 CEdit
控件中的 Return 键 (VK_RETURN
)? CEdit
控件的父级是 CDialog
。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
您还可以在对话框的 PreTranslateMessage 中过滤键。 如果您收到
VK_RETURN
的WM_KEYDOWN
,请调用GetFocus
。 如果焦点位于编辑控件上,请调用编辑控件中按下的返回按钮的处理。请注意,if 中的子句顺序依赖于短路才能高效。
You could also filter for the key in your dialog's PreTranslateMessage. If you get
WM_KEYDOWN
forVK_RETURN
, callGetFocus
. If focus is on your edit control, call your handling for return pressed in the edit control.Note the order of clauses in the if relies on short-circuiting to be efficient.
正确的答案是处理 WM_GETDLGCODE / OnGetDlgCode 消息。 在那里您可以指定您希望所有键都由您的类处理。
The correct answer is to handle the WM_GETDLGCODE / OnGetDlgCode message. In there you can specify that you want all keys to be handled by your class.
确保在控件的对话框资源中设置了编辑控件样式 ES_WANTRETURN
Make certain the Edit Control style ES_WANTRETURN is set in the dialog resource for the control
默认情况下,Return 键会关闭 MFC 对话框。 这是因为 Return 键会导致调用
CDialog
的OnOK()
函数。 您可以重写该函数以拦截 Return 键。 我从 本文(请参阅最后的方法3)。首先,确保您已使用 类向导,例如:
接下来,您可以将以下函数原型添加到对话框的头文件中:
然后您可以将以下实现添加到对话框的cpp文件中:
请注意:如果对话框中有一个 ID 为
IDOK
的 OK 按钮,那么它也会调用OnOK()
。如果这给您带来任何问题,那么您必须将按钮重定向到另一个处理程序函数。
方法 3 中也描述了如何执行此操作-key-from-edit-controls-in-a-dialog-box" rel="nofollow noreferrer">我上面提到的文章。
By default, the Return key closes an MFC dialog. This is, because the Return key causes the
CDialog
'sOnOK()
function to be called. You can override that function in order to intercept the Return key. I got the basic idea from this article (see Method 3 at the end).First, make sure that you have added a member for the edit control to your dialog using the Class Wizard, for example:
Next, you can add the following function prototype to the header file of your dialog:
Then you can add the following implementation to the cpp file of your dialog:
Please note: If you have an OK button in your dialog which has the ID
IDOK
, then it will also callOnOK()
.If this causes any problems for you, then you have to redirect the button to another handler function.
How to do this is also described in Method 3 of the article that I have mentioned above.
我自己也遇到这个问题。 经过一点实验后,如果您只想在返回时执行某些操作(经过一些编辑等)(不具体针对您关注的编辑器),则存在一种简单的方法 - 我只需创建一个不可见的默认按钮,然后让它按钮处理“返回”键而不是默认的“确定”按钮(当然,“确定”按钮应该将默认键设置为 false)
I encounter this problem myself. After a little experiment, a simple way existed if you just want to get the do something (after some editing etc) on the return (not specific for which editor you have focus) - I would just create a invisible default button, and let that button handle the 'return' key instead of default Ok button (of course, Ok button should be set default key to false)