如何在c#中按Enter键触发按钮点击事件

我正在
windows phone app中创建一个登录表单,我想在完成表单时按下enter按钮触发登录按钮事件.

要求:在登录页面的上一个文本字段中单击“输入”按钮时,应触发登录按钮事件.

代码示例
  我知道如何通过单击输入按钮从一个文本字段移动到另一个文本字段,如下所示

private void passkeydown(object sender, KeyEventArgs e)
{
  if (e.Key == Key.Enter)
 {
  nextfield .Focus();
  }
 }

但我不知道如何触发按钮点击事件.

最佳答案 试试这个:

if (e.Key == Key.Enter)
{
  LoginButton_Click(sender,e); //here LoginButton_Click is click eventhandler
}
点赞