private void EnterConverToTab(object sender, KeyEventArgs e) {//Enter键转换成Tab键 if(e.KeyValue==13) { SendKeys.Send("{Tab}"); } }