private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if ((e.KeyCode == Keys.V) && (e.Modifiers == Keys.Control))
{
Clipboard.Clear();
this.textBox1.Text =Clipboard.GetText();
}
}