How do I get a DataGridTemplateColumn to work with objects implementing the IEditable<T> interface?
问题 I have a DataGrid with a DataGridComboBox column that works fine. It binds properly to the list of items, correctly displays the selected item, correctly selects an item, and binds the selected item's ID to the underlying row model properly. It looks like this: <DataGridComboBoxColumn x:Name="AssetColumn" Width="3*" DisplayMemberPath="Item" Header="Item" ItemsSource="{Binding Data.AssetDescriptions, Source={StaticResource proxy}}" SelectedValueBinding="{Binding AssetDescriptionID}"