我有一个字典集合。我想将字典值绑定到基于键的标签。我的字典是这样的,
public Dictionary<string, IValue> MyCollection { get; set; }
IValue
public string Name { get; set; }
public string Rank { get; set; }
MainWindow.xaml
<Label Content={Name, Source={x:Static MyCollection[P1]}}/>
请有人给我一个建议。预先感谢。