I want to pre-select a combobox, (select an existing item) from the itemssource. Here is my class model and xaml syntax.
Class ViewModelSample
{
Public List<Animal> Animals;
Public LivingBeing LivingBeingInst {get; set;}
}
Class LivingBeing
{
Public Animal AnimalInst {get; set;}
}
--------------------------------------------------------------------
<Combobox ItemsSource={Binding Animals} SelectedItem={Binding LivingBeingInst.AnimalInst}
DisplayMemeber = SomePropertyInAnimal>
--------------------------------------------------------------------------
But this doesnt work. All I want is, when the xaml shows up, I need the combobox to be pre-selected with the item given in SelectedItem.
Any help is much appreciated. Thanks, Mani