TabIndex似乎不适用于Windows Phone的vs2010表达式

时间:2012-07-10 18:21:54

标签: windows-phone-7

我有几个控件,我为我要停止的控件设置了tabindex。我使用模拟器来测试它。在键盘上键入enter按钮后,光标停留在文本框上。有人会告诉我链接或代码,使其工作?提前致谢。

以下是我的控件代码:

<TextBox x:Name="txtUser" Grid.Row="1" Grid.Column="2" IsTabStop="True" TabIndex="1" Style="{StaticResource txtStyle_24}" FontSize="32"   />
 <TextBlock x:Name="Password" Text="Password :" Grid.Row="2" Grid.Column="1"    Style="{StaticResource LabelStyle_24}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="32" Foreground="{StaticResource PhoneAccentBrush}" />
  <PasswordBox x:Name="psd" PasswordChar="*" Grid.Row="2" Grid.Column="2"   IsTabStop="True" 
                  TabIndex="2"  Style="{StaticResource PasswordBoxStyle_24}" FontSize="32"/>

1 个答案:

答案 0 :(得分:1)

TabIndex

中,

Windows Phone没有意义

如果您想将焦点移至下一个TextBox,请订阅KeyUp个事件并检查e.Key == Keys.Enter。比使用textBox.Focus()

移动焦点

我看到了此行为,但现在找不到链接