“Tabbing” between fields using TabIndex
问题 PROBLEM In my Windows Phone 8 C#/XAML Application using .NET 4.5 I'm trying to "iterate" through form. In other words, when the user presses "Enter" key, the focus changes to another TextBox or PasswordBox . HOW MY CODE LOOKS LIKE NOW XAML: <TextBox TabIndex="0" KeyDown="TextBox_KeyDown"/> <TextBox TabIndex="1" KeyDown="TextBox_KeyDown"/> <TextBox TabIndex="2" KeyDown="TextBox_KeyDown"/> <TextBox TabIndex="3" KeyDown="TextBox_KeyDown"/> <TextBox TabIndex="4" KeyDown="TextBox_KeyDown"/> .... C