Easy one for you all...
I\'m new to Silverlight and really missing stuff like DataTables and things. What I\'m also currently struggling with is how to get the text
For a complex object, use reflection with the DisplayMemberPath property:
var itemType = cbx.SelectedItem.GetType(); var pi = itemType.GetProperty(cbx.DisplayMemberPath); var stringValue = pi.GetValue(cbx.SelectedItem, null).ToString();