Setting Focus for Keyboard Input
<UserControl x:Class='SilverlightApplication3.MainPage'
xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
xmlns:d='http://schemas.microsoft.com/expression/blend/2008'
xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006'
mc:Ignorable='d'
d:DesignWidth='640'
d:DesignHeight='480'>
<Border CornerRadius="20,20,20,20">
<Border.Background>
<RadialGradientBrush>
<GradientStop Color="#FFFA6607" Offset="0"/>
<GradientStop Color="#FFD4A282" Offset="1"/>
</RadialGradientBrush>
</Border.Background>
<Grid x:Name="LayoutRoot" Margin="4,4,4,4">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.078*"/>
<ColumnDefinition Width="0.844*"/>
<ColumnDefinition Width="0.078*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="0.26*"/>
<RowDefinition Height="0.74*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Column="1" d:LayoutOverrides="Height">
<Run Foreground="#FF000080" Text="Collect Data"/></TextBlock>
<StackPanel>
<TextBox Background="{x:Null}" Height="Auto" x:Name="TextFirstName"
Width="Auto" Foreground="#FF0000FF" Text="Enter First Name"
TextWrapping="Wrap" TabIndex="0"/>
<TextBox Background="{x:Null}" Height="Auto" x:Name="TextLastName"
Width="Auto" Foreground="#FF0000FF" Text="Enter Last Name"
TextWrapping="Wrap" TabIndex="1"/>
<TextBox Background="{x:Null}" Height="Auto" x:Name="TextFavoriteColor"
Width="Auto" Foreground="#FF0000FF" Text="Enter Favorite Color"
TextWrapping="Wrap" TabIndex="2"/>
</StackPanel>
</Grid>
</Border>
</UserControl>
Related examples in the same category