Зависит от того, отвечаю ли я на вопрос в заголовке или в тексте ... вы можете получить доступ к 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);