1

我想将我的国家集合绑定到一个组合框。

我的 XAML 页面如下所示:

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

我想将标题显示为 DataTextField。

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

如何设置组合框的显示字段以使用绑定?

4

1 回答 1

0

我认为你需要做

DisplayMemberPath="Title"
SelectedValuePath="Title"
SelectedValue="{Binding Path=Country,Mode=TwoWay}" 
于 2012-11-12T07:41:51.013 回答