没有System.Windows.Forms.Clipboard复制到剪贴板?

时间:2011-09-27 17:48:28

标签: c# copy clipboard

那么问题是。有没有将文本和/或文件复制到Windows剪贴板而不使用.NET中的Clipboard Class

1 个答案:

答案 0 :(得分:5)

取决于我是否在标题或文本中回答问题...您可以访问System.Windows.Clipboard而无需访问System.Windows.Forms ...

string textData = "I want to put this string on the clipboard.";

// After this call, the data (string) is placed on the clipboard and tagged
// with a data format of "Text".
System.Windows.Clipboard.SetData(DataFormats.Text, (Object)textData);