我有一个
ObservableCollection<Products> products
在我的Model类和另一个
中ObservableCollection<Foo> foo
在ViewModel类中。
我已将产品绑定到Developer Express GridControl,我在该网格中有一个ComboBox列。
如何在ComboBox中绑定 foo 集合?
这是我将产品绑定到GridControl的方式
<dxg:GridControl ItemsSource="{Binding Path=Model.Products}" ...
答案 0 :(得分:1)
这样的事情应该有效:
<ComboBox ItemsSource="{Binding Path=DataContext.foo, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type dxg:GridControl}}}"/>