WPF:将鼠标悬停在组合框的组合框项上,以获取字典的键

时间:2018-10-01 15:38:01

标签: c# wpf

我将字典绑定到组合框的itemssource上,并显示其键。

<ComboBox ItemsSource="{Binding dictionary}" DisplayMemberPath="Key" />

我的字典看起来像这样:

Dictionary<string, List<string>> dictionary

现在,我想获取要悬停的comboboxitem的密钥:

ComboBoxItem item = sender as ComboBoxItem;
if (dictionary.ContainsKey(item.Content.ToString()))

我现在的问题是item.Content.ToString()返回以下内容:

[ mykey, System.Collections.Generic.List`1[System.String]]

如何正确获取mykey(和相应的值)?

0 个答案:

没有答案