说我想绑定到TKey与XAML字符串的字典:
<Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" />
不起作用。
我该怎么做?
我说的是项目(“钥匙”)
答案 0 :(得分:12)
试试:
<Label DataContext="{Binding MyDictionary}" Content="{Binding [OK]}" />
或者那(更简单):
<Label Content="{Binding MyDictionary[OK]}" />