0

我的表单上有 2 个输入框。如果用户输入数据,他可以按回车键查看它们是否正确,否则会出现错误消息框。现在我有一个小问题。当 messagebox 出现并且用户按下回车键时,msgbox 消失并立即出现另一个。我想消失,让用户更改他们的数据。我该如何解决?我试图以这种方式解决这个问题:我添加了不可见的文本框,当用户按下 Enter 时,此文本框获得焦点,如果出现错误 msgbox,最终发件人获得焦点。代码:

private void login(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        focus.Focus();
        if (password.Password == "" || account.Text == "")
        {
            MessageBoxResult result = MessageBox.Show("Fill login and password.");
        }
        if(sender.GetType() == account.GetType())
          ((TextBox)sender).Focus();
        else
          ((PasswordBox)sender).Focus();
    }
}
4

2 回答 2

1

尝试这个:

if (e.Key == Key.Enter && !string.IsNullOrWhiteSpace(txtPass.Text))
        {
            if (1 + 1 != 3)
            {
                MessageBox.Show("Wrong!!!");
                txtPass.Clear();
                txtPass.Focus();
            }
        }
于 2012-05-01T17:14:45.913 回答
1

尝试设置e.Handled = true; 以防止按键传播到您的文本框。

于 2012-05-01T16:48:03.633 回答