利用回车键将输入光标切换到下一个输入框以及系统快捷键Ctrl+C、V、X的屏蔽

private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
    if ( e.KeyValue == (char)Keys.Enter )
    {
        SendKeys.Send("{TAB}");//将回车键转换为Tab键  也可以让下一个文本输入框获得焦点(txt.Focus())来实现         
     }         
    if ( e.Control && e.KeyValue == (char)Keys.V )      
    {         
        e.Handled = true;//跳过控件的默认处理          
    }         
    if ( e.Control && e.KeyValue == (char)Keys.C )       
    {           
        e.Handled = true;        
     }         
    if ( e.Control && e.KeyValue == (char)Keys.X )       
    {          
        e.Handled = true;
     }
}