ComboBox in CellEditingTemplate
问题 I am trying to use a ComboBox in a DataGrid CellEditingTemplate, binding to an existing DataTable. When I double click the item, the ComboBox displays, but there is no data in it. I've researched different options for a couple of days, but nothing seems to work. <DataGridTemplateColumn Header=" Venue" CanUserSort="False"> <DataGridTemplateColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding Venue}"/> </DataTemplate> </DataGridTemplateColumn.CellTemplate> <DataGridTemplateColumn