访问 Windows 剪贴板
如何使用 .NET 框架访问剪贴板内容?
How can you access clipboard content using the .NET framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 .NET 框架访问剪贴板内容?
How can you access clipboard content using the .NET framework?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
检查
剪贴板
类及其SetText
\GetText
方法。另请参阅本教程:使用 C# 进行剪贴板复制和粘贴
Check the
Clipboard
class and itsSetText
\GetText
methods.See also this tutorial: Clipboard Copy and Paste with C#
访问 .NET 中的剪贴板
可通过系统 .Windows.Forms.Clipboard
类。
Access to the clipboard in .NET is available through the
System.Windows.Forms.Clipboard
class.
您可以使用 Clipboard 类。文档和演示位于 Clipboard 类(系统.Windows.Forms)。
You can use the Clipboard class. Documentation and demos are in Clipboard Class (System.Windows.Forms).