I want my combobox item names and values to be taken from my List of course I don't want my view model to hold combobox items list.
I got a list a,b,c,d
i want my combobox to have items
my viewmodel got
public List<string> PropsList { get; set; }
my view got
<ComboBox Name="cbPropName" ItemsSource="PropsList"/>
it gives me combo with P r o p s L i s t
:(