I have an editable WPF ComboBox with TextSearchEnabled. I need to force the user's text input to uppercase when they type to filter the ComboBox.
I was thinking of modifying the textbox that is part of the control (named 'PART_EditableTextBox') to set CharacterCasing="Upper", however I can't quite figure out how to do this.
Do I need to use a trigger, or modify the template in some way?
or try creating an attached behaviour for the textbox
This works and seems like a reasonable solution:
Ensure that the combobox is not collapsed on loaded otherwise the template will not be found.
I found that post where the attached property is used. That permit to use that for all of your ComboBox without rewriting the code.
IMO, the quicker way is to set the UpdateTrigger to PropertyChanged and, in the data object, uppercase the value when it is updated.