Hi,
I have decided to use a GridViewComboBoxColumn instead of a ComboBox. But there is no SelectedValue property. When I change the dropdown value in the GridViewComboBox nothing happens in my VM. What is the correct way of mapping the properties in GridViewComboBox or what is the corresponding property to SelectedValue? This is what I've done so far:
<t:GridViewComboBoxColumn Width="150" x:Name="Ebene1"
ItemsSource="{Binding DataContext.EigenschaftenEbene1, ElementName=LimitControl, Mode=TwoWay}"
DataMemberBinding="{Binding limk_gruppierung_ebene1, Mode=TwoWay}"
SelectedValueMemberPath="Id"
DisplayMemberPath="Bezeichnung">
</t:GridViewComboBoxColumn>
Best regards,
Andreas