那么问题是。有没有将文本和/或文件复制到Windows剪贴板而不使用.NET中的Clipboard Class?
答案 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);