0

私は

ObservableCollection<Products> products 

私のモデルクラスと別の

ObservableCollection<Foo> foo 

ViewModelクラスで。

製品をDeveloperExpressGridControlにバインドし、そのグリッドにComboBoxという列を作成しました。

ComboBoxでfooコレクションをバインドするにはどうすればよいですか?

これが、製品をGridControlにバインドする方法です。

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

1 に答える 1

1

このようなものが機能するはずです:

<ComboBox ItemsSource="{Binding Path=DataContext.foo, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type dxg:GridControl}}}"/>
于 2012-06-22T19:32:22.563 に答える