C# clipboard direct copy paste

c#, windows

Solution

If you want to copy from a textbox (in this example textBox1), this is what you need:

Clipboard.SetText(textBox1.Text); //To copy your text to your clipboard
Clipboard.GetText(); //To get your text from your clipboard

Problem

Hi I want to make direct copy/paste so for example I just make one click to button direct will make the paste to clipboard for this you can write example code

Original source