在Silverlight中,使用来自数据表之外的其他来源的数据填充组合框?

时间:2013-03-30 14:38:23

标签: silverlight combobox dataform

使用Silverlight我有一个绑定到表A的数据表,我需要用表B中的数据填充此数据表的组合框。如何在XAML代码中声明这个?

1 个答案:

答案 0 :(得分:1)

如果您的数据形式位于具有名为“TableBItems”的属性的UserControl中,您可以写:

<ComboBox SelectedItem={Binding FieldInTableA,Mode=TwoWay} 
  ItemsSource={Binding TableBItems, RelativeSource={RelativeSource AncestorType='UserControl'}} 
  DisplayMemberPath="FieldInTableBYouWantToShow"/>