I am developing a windows phone app and am new in wp7 development. I am using a text box to enter amount of a product. Only digits are allowed to enter in to that field. So my need is to display digits (0 to 9) in the keypad. How can I do this ?.. Please help.
I tried the following code
<TextBox Name="textBox1" Width="200" Height="100" Text="0.00" TextAlignment="Right">
<TextBox.InputScope>
<InputScope>
<InputScopeName NameValue="CurrencyAmount" />
</InputScope>
</TextBox.InputScope>
</TextBox>
But still it showing the keyboard below.

you just need 0~9
so += the keydown event of textblock
and use these code