我想将我的国家集合绑定到一个组合框。
我的 XAML 页面如下所示:
<pmControls:pmComboBox
Margin="3" Grid.Row="5" Grid.Column="1"
ItemsSource="{Binding Path=Countries}"
SelectedValue="{Binding Title,Mode=TwoWay}" >
</pmControls:pmComboBox>
我想将标题显示为 DataTextField。
目前它在我的组合框列表中显示国家类的命名空间。我也尝试添加 DisplayMemberPath 但它也不起作用。
如何设置组合框的显示字段以使用绑定?