How to make a TextBox to enter input, starting with a lowercase letter?

I have a Windows Phone 8.1 application.

I have a TextBox.

<TextBox /> 

As soon as I touch the TextBox, I want the normal alphabet format to open, but with the first letter starting with lowercase, as opposed to the default, which starts with uppercase. I tried to change various InputScopes. This did not work. I'm doing something wrong.

I would be glad if someone could point me in the right direction. Thanks at Advance.

+6
source share
1 answer

You can use:

 <TextBox IsTextPredictionEnabled="False" IsSpellCheckEnabled="False"/> 

As the MSDN says:

Auto-capitalization: enabled if IsSpellCheckEnabled = true ; disabled if IsSpellCheckEnabled = false

+8
source

Source: https://habr.com/ru/post/981098/


All Articles