当PasswordBox给定焦点时,软件键盘从屏幕消失

时间:2011-02-18 18:20:25

标签: c# silverlight windows-phone-7

我在页面上有一个PasswordBox,我试图将其设置为在导航到页面时自动获得焦点。

我遇到问题,当我以编程方式对其进行聚焦时,它会接受焦点,但键盘会消失。

这会导致问题,因为用户必须单击PasswordBox,然后重新使用该控件。

我尝试在页面的Loaded事件中添加此代码,ContentGrid.Loaded,OnNavigatedTo,它们都会产生相同的结果。

我已尝试设置页面的TabIndex / IsTabStop和控件本身,但它似乎不起作用。 Passwordbox是唯一具有TabIndex的项目。

<PasswordBox x:Name="pwbAnswer" Style="{StaticResource PasswordBoxStyle}" VerticalAlignment="Top" Grid.Row="3" 
                PasswordChanged="pwbAnswer_PasswordChanged" KeyUp="pwbAnswer_KeyUp" TabIndex="1" IsTabStop="True" />



 private void ContentGrid_Loaded(object sender, RoutedEventArgs e)
            {
                this.IsTabStop = true;
                pwbAnswer.Focus();
            }

1 个答案:

答案 0 :(得分:3)

您必须使用PasswordBox的已加载事件。我有同样的问题。 如果您附加到该加载事件,那么您可以将Focus设置为发件人,即PasswordBox本身。

<PasswordBox x:Name="pwbAnswer" Style="{StaticResource PasswordBoxStyle}" VerticalAlignment="Top" Grid.Row="3" 
                Loaded="PasswordBox_Loaded" PasswordChanged="pwbAnswer_PasswordChanged" KeyUp="pwbAnswer_KeyUp" TabIndex="1" IsTabStop="True" />



 private void PasswordBox_Loaded(object sender, RoutedEventArgs e)
            {
                PasswordBox box = sender as PasswordBox;
                box.Focus();
            }

或者您可以使用LayoutUpdated事件的解决方法。

<Page .... LayoutUpdated="ContentGrid_LayoutUpdated">
<PasswordBox x:Name="pwbAnswer" Style="{StaticResource PasswordBoxStyle}" VerticalAlignment="Top" Grid.Row="3" 
                 KeyUp="pwbAnswer_KeyUp" TabIndex="1" IsTabStop="True" />

 private void ContentGrid_LayoutUpdated(object sender, RoutedEventArgs e)
            {
                this.IsTabStop = true;
                pwbAnswer.Focus();
            }