文本字段如何响应?
我在响应“Enter”等事件时遇到一些问题。我有一个带有 CEdit 字段的对话框,用户可以在其中输入一些内容。 如果用户在文本字段中按“Enter”键,我该如何响应?
如果用户按“Enter”键,我会将文本字段中的内容提交给函数。
I have some problems to respond on a event like "Enter". I have a dialogbox with a CEdit field, where the user could enter some stuff.
How could I respond, if the user press "Enter" in the textfield?
I will submit the content in the textfield to a function, if the user press the "Enter" key.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Visual Studio GUI 编辑器,则可以选择文本框,查看属性窗口,并将“想要返回”设置为“true”。
如果您通过代码创建 CEdit,则可以将 ES_WANTRETURN 传递给 CreateWindowEx 函数。
另外,这是如何处理 CEdit 控件中的 Return 键?<的重复项/a> 其中有非 GUI 的答案。
If you're using the Visual Studio GUI editor, you can select the textbox, view the properties window, and set "Want Return" to "true".
If you're creating the CEdit via code, you can pass ES_WANTRETURN to your CreateWindowEx function.
Also, this is a duplicate of How can I handle the Return key in a CEdit control? which has answers for non-GUI.