PDA

View Full Version : Combobox Enum binding



dnakorea
Jan 14, 2021, 10:22 AM
How to implement Enum object binding to Combobox control?

fabricio.murta
Jan 14, 2021, 1:37 PM
Hello @dnakorea!

This is not supported automatically (implicitly converting to/from values), you should convert the enum to/from its numeric or string representation from code behind or by using converters in the fields.

Hope this helps!

dnakorea
Jan 14, 2021, 10:37 PM
I got it.
Thanks update.