I want to bind something to a combobox that will display something different than it's value. What would be the suggested/most common data container to link the combobox to? Would it be a custom type and then do a list of that type? A data table? I am using vb.net and wpf. The list would be something like:
dog,1 cat,2 bird,3 fish,4
The combobox would display the animal name and the value would be the number. The data to populate the combobox will come from a MYSql database.