将多行文本粘贴到单行编辑框控件中

发布于 2024-10-06 10:19:47 字数 225 浏览 3 评论 0原文

我的应用程序使用标准单行编辑框控件。有没有办法接受多行“粘贴”,丢弃回车/换行?

注释
不想想要使用多行控件
我的应用程序是带有 WTL 的 VS2010 C++(不是 MFC 或 ATL)
我想要这个的原因是因为实际输入通常很短,但在极少数情况下可能有数百甚至数千个字符。在这种情况下,用户可能很想使用记事本或其他工具构建字符串,然后只需剪切并删除字符串即可。将其粘贴进去。

My app uses standard single-line Edit Box controls. Is there any way to accept a multi-line "paste", discarding carriage return / linefeeds?

Notes
I don't want to use multi-line controls
My app is VS2010 C++ with WTL (not MFC or ATL)
The reason I want this is because actual input is normally quite short, but could in rare circumstances be hundreds or even thousands of characters. In which case users might well want to build the string using NotePad or whatever, then just cut & paste it in.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魂牵梦绕锁你心扉 2024-10-13 10:19:47

这是不可能的,因为用户正在粘贴自己。另一种方法是使用多行编辑框,并通过将粘贴的数据管理到控件的 OnChange 函数中(基本上忽略新行),将所有数据显示到一行中。

This is not possible as the user is pasting himself/herself. An alternative is to use a multi-line Edit Box and displaying all the data into one line by managing the pasted data into OnChange function for your control (basically disregading new lines).

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