Cut and Paste text to and from Clipboard

Madhu.b.rokkam
Posted by Madhu.b.rokkam under Windows Forms category on | Points: 40 | Views : 2496

private void button_Click(object sender, EventArgs e)
{
Clipboard.SetText("Welcome to Dotnet Funda!");
textBox.Text = Clipboard.GetText();
}

Comments or Responses

Login to post response