Is it possible to not show system keyboard, when you tap textbox? Ive created custom keyboard and can work with textblock only, because of this i cant delete just parts of sentence.
Share
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.
If you set
IsReadOnlytotruethen the user can still select the text in aTextBoxto copy paste and the OS doesn’t show the software input keyboard when selected. You can still alter the contents of theTextBoxthrough code though. Eg;And in your code behind;
Would prevent the user from entering text via the software keyboard but will append “… focused” everytime they give focus to the
TextBox. Contrived example, but you get the idea.The only other thing I’d suggest is to re-style the
TextBox. By default whenIsReadOnlyis set theTextBoxwill provide visual cues that it can’t be modified by the user. Which isn’t the case here.