使用Enter键将文本发送到富文本框

我当前正在使用winforms,我想通过按Enter键将文本从文本框发送到富文本框。这是我目前拥有的代码

private void textBox1_TextChanged(object sender, EventArgs e)
{
}

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
     if (e.KeyCode == Keys.Enter)
     {
          richTextBox1.Text = textBox1.Text;
          e.Handled = true;
     }
}

我想念什么?提前致谢。