I\'m using the excellent MVVM Light Toolkit. My ViewModel exposes:
public const string CourtCodesTypeCourtPropertyName = \"CourtCodesTypeCourt\";
private Li
Here I have found answer http://cinch.codeplex.com/discussions/239522
For the DataGridComboBoxColumn you have to create a StaticRecource of the ItemsSource like:
and bind it to the DataGridComboBoxColumn with following:
ItemsSource="{Binding Source={StaticResource ViewModelCollection1}}"
Thats because the DataGridColumns are not a part of the visual tree.
And if you want to bind on a collection of a item of the DataGrid you have to set the ItemsSource over the two styles: