Hello,
You need to use static MVVM Binding in this case.
Please use the following Xaml markup in your MainView.xaml file :
<Grid.Resources> <local:ComboItemSource x:Key="cmbList"/> …. </Grid.Resources> ….. <c1:DataGridComboBoxColumn Header="Product" Binding="{Binding Product,Mode=TwoWay}" ItemsSource="{Binding Path=ComboItemList,Source={StaticResource cmbList}}"> </c1:DataGridComboBoxColumn>
Refer to the attached sample implementing the same.
Hope this helps.
Regards,
Reema