当在textBox中输入回车时就响应button中的click事件要怎么写
我知道在textBox中的KeyPress中写
if(e.Keychar==13)
{
这里要怎么响应button的事件?
}