Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 C# 新手,我正在尝试创建一种将文本框中的文本复制到剪贴板的方法。我在网上搜索并发现 Clipboard.SetText 和 Clipboard.GetDataObject 作为一些可能的方法,但是当我开始输入它们时,intellisense 无法识别它们。我想我可能需要使用 system.windows.forms 命名空间,但是当我把它放在上面时也没有被识别。我应该提到这是在 .aspx 网站的网络表单上,如果这有所作为的话。提前致谢。
那是行不通的。
文本框将位于客户端计算机上。
您尝试使用 C# 访问的剪贴板将位于服务器上。
来自 Microsoft 的关于复制到剪贴板和从剪贴板复制的大量资源。