使用String键绑定到索引属性

时间:2009-09-14 09:31:40

标签: wpf vb.net xaml dictionary idictionary

说我想绑定到TKey与XAML字符串的字典:

<Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" />

不起作用。

我该怎么做?

我说的是项目(“钥匙”)

1 个答案:

答案 0 :(得分:12)

试试:

<Label DataContext="{Binding MyDictionary}" Content="{Binding [OK]}" />

或者那(更简单):

<Label Content="{Binding MyDictionary[OK]}" />