I know these things are trivial in windows forms and other GUI based libraries, but is there a way I can copy a string to my clipboard in Monogame?
This works just fine as long as you have a reference to System.Windows.Forms
, which shouldn't be a problem if you are using "standard" MonoGame for Windows. This gets more interesting if you are trying to be cross platform compatible, or are using one of the unofficial MonoGame ports with a WPF back-end.
System.Windows.Forms.Clipboard.SetText("This is some text");