如何基于WPF中的键将静态词典值绑定到TextBox

时间:2018-09-18 09:27:12

标签: c# wpf

我有一个字典集合。我想将字典值绑定到基于键的标签。我的字典是这样的,

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]}}/>

请有人给我一个建议。预先感谢。

0 个答案:

没有答案