I want to make a button so when you click it it copys something to your clipboard with c# for example: I click the button and I press ctrl + v and it types out something I have tried my.clipboard.settext ("text") and some other commands but i cant figure it out. The button doesnt have any code but the default. https://gyazo.com/32d07e4d7a5b67fbd78b8c5956026023
I learned how to do it you type this:
string script = Properties.Resources.STRINGNAME.ToString(); Clipboard.SetText(script);
then go to project>resources>add string> put the stuff you want to copy there.