Is there a way to automatically capitalize all input thoughtout a WPF app?
|
|
You can case all input into
To apply to all
|
||
|
|
I don't know if there is a quick way to do it for the entire application, however, you can achieve this at the control level. For a textbox input, you could handle the onTextChanged event, and do something like:
|
||||
|
|
|
I recommend creating a custom Textbox class and override an event to automatically capitalize the text. First, this depends on if you want the text to be capitalize as they type or after input is finished. E.g. for after input is finished
|
||
|
|
