I can do this very easily on normal Combobox as SelectedText or SelectedValue, but using Silverlight, I can't get to that option.
views:
244answers:
2SelectedItem give me the type, but not the value itself.It returns me ComboBoxItem, that's not what I want.
PlayKid
2009-08-14 12:07:21
It returns ComboBoxItem because you defined the items in your list as ComboBoxItems... if you define the content with the ItemsSource property, it will return the actual data items. How do you define the "value" of a ComboBoxItem anyway ?
Thomas Levesque
2009-08-14 12:29:34