I have a viewmodel with a property Animals of type list. I am trying to bind this list to a combobox in my xaml page. I cannot seem to get this combobox to bind. What am I doing wrong?
<ComboBox x:Name="uxAnimal" Grid.Row="0" Grid.Column="1" Width="130" HorizontalAlignment="Left" ItemsSource="{Binding Path=Animals}" >
Thanks