我将字典绑定到组合框的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(和相应的值)?