I have a very simple Windows Phone app with one TextBox. When I type some text, then press Space 2 times, WP7 automatically add a dot.
I dont want the dot. How to handle this ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Adding a dot when pressing “space” two times is a feature from the WP7 keyboard. The user can disable it from the phone settings.
Since it’s a global setting, you can’t change it. The best you can do it to forbid the user to type dots altogether (when pressing space two times AND when pressing the dot key). If you want to do that, just subscribe to the TextChanged event of your TextBox, and remove the dots.