I have a Windows Phone 8.1 Application.
I have a TextBox in it.
<TextBox />
As soon as I tap on the TextBox I want the normal alphabet layout to open but with the first letter starting with lowercase unlike default which starts with uppercase. I tried changing various InputScopes. It didn't work. Am I doing something wrong.
I would be glad if someone can point me in the right direction. Thanks in Advance.
Just use the pattern attribute. Try my runnable snippet. Type in a non-alphanumeric character, then click Submit. The submission will be halted.
To use a keyboard shortcut to change between lowercase, UPPERCASE, and Capitalize Each Word, select the text and press SHIFT + F3 until the case you want is applied.
Add text-transform: lowercase; for this field.
With upperCaseF() function on every key press down, the value of the input is going to turn into its uppercase form.
You may use:
<TextBox IsTextPredictionEnabled="False" IsSpellCheckEnabled="False"/>
As it is said at MSDN:
Auto-capitalization: enabled if
IsSpellCheckEnabled = true
, disabled ifIsSpellCheckEnabled = false
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With