一般问题 - 复制、剪切、粘贴
应用程序如何将复制的字符串相互传输?这是剪贴板用法吗?如果是这样,我如何在程序中访问剪贴板?
编辑:我对Windows系统感兴趣,我了解一点C#和C++。
How do the applications transfer the copied strings into each other? Is this a clipboard usage? If so, how can i access the clipboard in a program?
Edit: I'm interested in Windows systems, I know a bit of C#, and C++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,剪切和粘贴通常是使用系统范围的剪贴板来完成的。
在 Windows 窗体和 WPF 应用程序中,都有称为“剪贴板”的(不同的)类,其中包含访问系统剪贴板所需的内容。
基本上,剪贴板允许您在上面放置几乎所有内容,以及说明数据格式的标记。您可以以多种不同的格式放置相同的数据。例如,您可以通过这种方式将 Excel 中的电子表格的一部分剪切并粘贴到记事本中 - Excel 已将数据以本机 Excel 格式和纯文本格式放入剪贴板。
Yes, cut-and-paste is usually done using the system-wide clipboard.
In both Windows Forms and WPF applications, there are (different) classes called 'Clipboard', which contain the stuff you need to access the system clipboard.
Basically, the clipboard allows you to put pretty much anything on to it, along with markers that say what format the data is in. You can put the same data on in lots of different formats. That's how, for example, you can cut and paste a part of a spreadsheet in Excel into Notepad - Excel has put the data onto the clipboard in both a native Excel format and a plain text format.