XAML/Blend 相关数据绑定
我想创建一个相对于其他列表框当前所选项目绑定到 XPath 的列表框。
它使用 XmlDataProvider 获取数据,XML 文件如下所示:
<Programs>
<Program name="...">
<Step name="..."/>
<Step name="..."/>
</Program>
<Program name="another">
...
</Programs
因此,“父”列表框列出了所有程序,而“子”列表框仅显示当前程序的步骤。 这种类型的绑定叫什么?
I want to create a listbox that'll be bound to XPath, relative to the other listbox's currently selected item.
It's using XmlDataProvider for the data, and the XML file looks like this:
<Programs>
<Program name="...">
<Step name="..."/>
<Step name="..."/>
</Program>
<Program name="another">
...
</Programs
So, the "parent" listbox is listing out all the programs, while "child" shows only steps from the current program.
What's such a type of binding called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
干得好。希望这能回答您的问题。
Here you go. Hope this answers your question.