MFC 组件散焦事件处理程序
是否有处理 MFC 编辑框散焦事件的标准方法?我的意思是,如果我单击该框,输入一些内容,然后继续处理其他组件处理事件会被触发吗?感谢您的帮助!
Is there a standard way to handle MFC Edit box defocus event? I mean if I click on the box enter something and then move on on the other component handling event gets fired? Thank you for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Windows 会发送 WM_KILLFOCUS。
MFC 对编辑框使用
EN_KILLFOCUS
IIRC。Yes, Windows send the WM_KILLFOCUS.
MFC uses the
EN_KILLFOCUS
for edit boxes, IIRC.