如何绑定到特定的集合项?
如何将 TextBox.Text
绑定到 myDictionary["testElement"]
?
How to bind let's say TextBox.Text
to myDictionary["testElement"]
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过删除
testElement
周围的引号?如果键是一个应该有效的字符串。来自 MSDN:
Have you tried removing the quotes around
testElement
? If the key is a string that should work.From MSDN:
最好的方法是使用派生自 IValueConvertor 类。您绑定到字典本身,并设置 ConverterParameter='testElement',在转换器中,您可以获得字典和密钥并返回所需的内容。
The best way is to use a derived from IValueConvertor class. You bind to the dictionary itself, and set the ConverterParameter='testElement', in your converter you get both the dictionary and the key and return what's needed.