使用Silverlight我有一个绑定到表A的数据表,我需要用表B中的数据填充此数据表的组合框。如何在XAML代码中声明这个?
答案 0 :(得分:1)
如果您的数据形式位于具有名为“TableBItems”的属性的UserControl中,您可以写:
<ComboBox SelectedItem={Binding FieldInTableA,Mode=TwoWay}
ItemsSource={Binding TableBItems, RelativeSource={RelativeSource AncestorType='UserControl'}}
DisplayMemberPath="FieldInTableBYouWantToShow"/>