I Love the InputScope feature in Windows Phone 7, there are few InputScopes available for Silverlight for WP. I listed below. The InputScope property provides a way to automatically associate keyboard to textboxes. So, take advantage of it!
To add InputScope to a textbox is easy, just we need to add one more property like this below
<TextBox Name="txtSiteAddress" InputScope="Url"/> --// if you want to add text for web site URL
If you set InputScope="Text", started typing words it wil...
More