DataGrid KeyPress Event When Execute
we write this code but this code not excute at run time
plzzzzz Help me

private void grdSpinPlan_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if (e.KeyChar ==13)
{
SendKeys.Send("{Tab}");
}
}