0

我有一个绑定到字典的列表框。字典包含一个关键字和一个字符串。

 <ListBox Style="{StaticResource ListBoxStyle}" ItemsSource="{Binding PatientImgResources, UpdateSourceTrigger=PropertyChanged}" SelectedItem="{Binding SelectedKey}"  DisplayMemberPath="Key" />

PatientImgResources 是 Dictionary SelectedKey 是我想要的 Value,DisplayMemberPath 只显示关键字。

我希望这个关键字作为我的值,不幸的是 SelectedKey 总是包含整个字典条目,关键字加值。我试过 SelectedValuePath="Key" 。到目前为止没有工作。

是否可以绑定到密钥?我不想使用精简的字典。

4

1 回答 1

1

在 ItemSource Binding 中使用“PatientImgResources.Keys”而不是“PatientImgResources”...

于 2012-10-05T09:36:47.440 回答