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.

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!

share|improve this question

1 Answer

up vote 8 down vote accepted

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:

public class ComboBoxItem()
{
   string displayValue;
   string hiddenValue;

   //Constructor
   public ComboBoxItem (string d, string h)
   {
        displayValue = d;
        hiddenValue = h;
   }

   //Accessor
   public string HiddenValue
   {
        get
        {
             return hiddenValue;
        }
   }

   //Override ToString method
   public override string ToString()
   {
        return displayValue;
   }
}

And then in your code:

//Add item to ComboBox:
ComboBox.Items.Add(new ComboBoxItem("DisplayValue", "HiddenValue");

//Get hidden value of selected item:
string hValue = ((ComboBoxItem)ComboBox.SelectedItem).HiddenValue;
share|improve this answer
Wow that's cool, I did it a little differently, but the idea is the same, thanks a ton! – sooprise Sep 21 '10 at 18:14
Ok wait, now how to I get the hidden value? ComboBox.SelectedItem.??? – sooprise Sep 21 '10 at 18:17
Basically, cast is to ComboBoxItem, and then get the hidden value... ((ComboBoxItem)ComboBox.SelectedItem).hiddenValue; Assuming that hiddenValue was public. You'd usually create an accessor for the property instead. – J J Sep 21 '10 at 18:25
Can you add an accessor to the above code example? – sooprise Sep 21 '10 at 18:29
1  
Thanks @JJ... Man, you saved my time, and unnecessary codings! – user1122359 Nov 8 '12 at 10:48
show 1 more comment

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.