使用数据绑定绑定

时间:2012-06-22 18:25:34

标签: c# wpf devexpress

我有一个

ObservableCollection<Products> products 

在我的Model类和另一个

ObservableCollection<Foo> foo 

在ViewModel类中。

我已将产品绑定到Developer Express GridControl,我在该网格中有一个ComboBox列。

如何在ComboBox中绑定 foo 集合?

这是我将产品绑定到GridControl的方式

<dxg:GridControl ItemsSource="{Binding Path=Model.Products}" ...

1 个答案:

答案 0 :(得分:1)

这样的事情应该有效:

<ComboBox ItemsSource="{Binding Path=DataContext.foo, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type dxg:GridControl}}}"/>