textBoxにのみ数字を書くようにユーザーにアドバイスするアプリケーションがあります。ただし、textBox GotFocus-attributeでは、通常のキーボードになります。これをダイヤラ入力または番号のみの入力に変更するにはどうすればよいですか?
<TextBox
Grid.ColumnSpan="2"
Grid.Row="3"
Grid.Column="0"
FontSize="80"
FontWeight="Bold"
Height="130"
HorizontalAlignment="Center"
Width="200"
Margin="0,0,0,0"
Name="userAnswer"
Text=""
TextAlignment="Center"
VerticalAlignment="Stretch"
GotFocus="userAnswer_GotFocus"
Background="White"
Foreground="Black"
/>