DataGridComboBoxColumn binding to List<Enum>
问题 I want to bind a list of enum values to a 'DataGridComboBoxColumn'. I've tried a lot, but nothing really works. Here is what I have: viewmodel-class: public class ViewModel { public ViewModel() { TestCollection= new ObservableCollection<MyEnum>(); AnyClasses = new ObservableCollection<AnyClass>(); //... fill AnyClasses with stuff... TestCollection.Add(MyEnum.Value1); TestCollection.Add(MyEnum.Value2); TestCollection.Add(MyEnum.Value3); TestCollection.Add(MyEnum.Value4); TestCollection.Add