如何在Silverlight中与Combobox绑定

时间:2012-11-12 07:34:43

标签: c# silverlight xaml

我想将我的国家/地区集合绑定到Combobox。

我的XAML页面如下所示:

<pmControls:pmComboBox 
    Margin="3" Grid.Row="5" Grid.Column="1"  
    ItemsSource="{Binding Path=Countries}" 
    SelectedValue="{Binding Title,Mode=TwoWay}" >
</pmControls:pmComboBox>

我想将Title显示为DataTextField。

目前,它在我的组合框列表中显示了国家/地区类的命名空间。 我也尝试添加DisplayMemberPath但它也不起作用。

如何设置Combobox的显示字段以使用绑定?

1 个答案:

答案 0 :(得分:0)

我认为你需要做

DisplayMemberPath="Title"
SelectedValuePath="Title"
SelectedValue="{Binding Path=Country,Mode=TwoWay}"