Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a TextBox to take input starting with a lower case letter?

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.

like image 319
HelpMatters Avatar asked Jan 16 '15 09:01

HelpMatters


People also ask

How do I make lowercase letters only input?

Just use the pattern attribute. Try my runnable snippet. Type in a non-alphanumeric character, then click Submit. The submission will be halted.

How do you make lower case typing?

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.

How do you force lowercase in HTML?

Add text-transform: lowercase; for this field.

How do you automatically set text box to uppercase?

With upperCaseF() function on every key press down, the value of the input is going to turn into its uppercase form.


1 Answers

You may use:

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

As it is said at MSDN:

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

like image 183
Romasz Avatar answered Oct 11 '22 15:10

Romasz