文本字段如何响应

发布于 2024-11-28 02:13:47 字数 131 浏览 1 评论 0原文

我在响应“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪推晚风 2024-12-05 02:13:47

如果您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文