从代码隐藏将菜单控件绑定到 XmlDataProvider
我有一个 XML 文件,其中的 menu/menuitem 标签类似于我们在 XAML。我正在使用绑定对象,然后将绑定源设置为 XmlDataProvider 。我只想在 XAML 上进行菜单控制。其余的部分应该从后面的代码中完成。 (例如,XAML 中的
我应该怎么办?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建新绑定,设置其源并使用
SetBinding
< /a> 在菜单上绑定属性。您绑定到什么属性取决于您,我首先绑定
DataContext
,然后相对于其他属性(例如ItemsSources
。Create a new binding, set its source and use
SetBinding
on the menu to bind a property.What property you bind to is up to you, I would first bind the
DataContext
and then bind relative to that on other properties such asItemsSources
.