使用 String 键绑定到索引属性
假设我想用 XAML 绑定到 TKey 是字符串的字典:
<Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" />
不起作用。
我该怎么做呢?
我说的是项目(“钥匙”)
Say I wanna bind to dictionary that TKey is string with XAML:
<Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" />
Doesn't work.
How should I do it?
I am talking about the Item("Key")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下:
或者(更简单一点):
Try that :
Or that (a bit simpler) :