2
<Grid x:Name="LayoutRoot">
    <TextBox x:Name="TxtFocusOut" Height="74" Margin="186,149,225,0" TextWrapping="Wrap" VerticalAlignment="Top" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="26.667" TextChanged="TextBox_TextChanged"/>
</Grid>

private void TextBox_TextChanged(object sender, System.Windows.Controls.TextChangedEventArgs e)
    {
        if(TxtFocusOut.Text.Length>=4)
        {
            MessageBox.Show("Four you typed four values");
        }
    }

在我点击 Ok Button On 消息框后,光标应该从 texbox 中聚焦出来。但现在它在 textbox 中闪烁。我应该怎么做才能从 testbox 中聚焦出来?

4

1 回答 1

1
FocusManager.SetFocusedElement(AnotherElementID);  

通过这样做,this 将失去它的 foucs 并且 foucs 可以用于另一个元素。

Keyboard.ClearFocus();
http://msdn.microsoft.com/en-us/library/system.windows.input.keyboard.clearfocus.aspx
试试这些

于 2012-12-06T18:41:49.570 回答