Hi,
I am not able to set the selected value of a combobox.
this is how i am doing.
ComboBox x:Name="cmbProjectStatus" ItemsSource="{Binding ItemListCollection}"
DisplayMemberPath="Name"
SelectedValuePath="ID"
SelectedValue="{Binding Path=ItemList.ID}"
SelectedItem="{Binding Path=ItemList}"
HorizontalAlignment="Stretch" VerticalAlignment="Center" />
I am using MVVM pattern in my project
Please Help...