tags:

views:

31

answers:

1

If I'm databinding a winforms combo box, is there a way to make the binding case insensitive?

For example if the combo box is bound to a property whose value is FOO, get it to select combo box item with value of Foo?

A: 

No it is not possible. This is internally implemented using reflection which is case-sensitive.

Aliostad