I know how to add items to a ComboBox, but is there anyway to assign a unique Id to each item? I want to be able to know which Id is associated to each item if it is ever selected. Thanks!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The items in a combobox can be of any object type, and the value that gets displayed is the ToString() value. So you could create a new class that has a string value for display purposes and a hidden id. Simply override the ToString function to return the display string. For instance:
And then in your code:
|
|||||||||||||
|
protected by tchrist Sep 6 '12 at 13:50
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.