Saludos. Bueno, lo estás haciendo mal al intentar capturar la tecla en el evento TextChanged(), mejor hazlo dentro del KeyPress(), de esta forma:
Código (csharp) [Seleccionar]
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if(e.KeyChar == Keys.Enter)
{
// MessageBox.Show("You pressed the enter key.");
}
}