Say what I have is an ObservableCollection<People> ListOfPeople such that:
public class People
{
    public string Name { get; set; };
}
I have a combobox written equivilent to:
<ComboBox x:Name="combobox_Profiles" Text="Select Person"
          ItemsSource="{Binding Path=???}">
How can I set the items within the combobox to be the value of each Name property? I thought I knew how to do this, but I clearly do not.
 
    