随着上述查询的继续,仍然无法保留焦点。
有没有其他方法可以实现这一目标?
void OnPreviewLostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
if (!Valid())
{
e.Handled = true;
(sender as Control).Focus();
}
}
使用此代码无法保持焦点..
随着上述查询的继续,仍然无法保留焦点。
有没有其他方法可以实现这一目标?
void OnPreviewLostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
if (!Valid())
{
e.Handled = true;
(sender as Control).Focus();
}
}
使用此代码无法保持焦点..