In my Windows Phone 8 app I use Telerik RadTextBox control.
I have a field of phone number
<Controls:RadTextBox Grid.Row="3" Grid.Column="1" Text="{Binding MobileNumber, Mode=TwoWay}"
InputScope="Number"
Watermark="Phone No." />
I want to add country code to the above textbox by default - so user need not enter "+45" or so. Whatever is the device's country that country code be added to the text box.
I tried to find out how to achieve the above, but couldn't get any useful information. Is their any way to find out country-code from device, OR how do we find it. ANd how to add it to the textbox by default.
Can anyone help me achieve the goal. Thanks