ObservableCollection<A> work = new ObservableCollection<A>();
Class A
{
int a;
int b;
observablecollection<string> c;
}
I need to bind" work" as the Itemsource of combobox and selectedItem as A. But I need to display the strings(c) of class A in the combobox. How will I display the strings C in the combobox. Any idea.?