将多行文本粘贴到单行编辑框控件中
我的应用程序使用标准单行编辑框控件。有没有办法接受多行“粘贴”,丢弃回车/换行?
注释
我不想想要使用多行控件
我的应用程序是带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的,因为用户正在粘贴自己。另一种方法是使用多行编辑框,并通过将粘贴的数据管理到控件的 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).