wpf - 如何使用带有标记扩展的 Path、ElementName
我正在使用这个标记扩展
<DataGridTextColumn Header="Something"
Binding="{controls:SwitchBinding Something, Yes, No}" />
这一切工作正常,除了现在我需要指定绑定的路径和元素名称。(甚至可能是“模式”)
我尝试失败:
Binding="{controls:SwitchBinding {Binding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks}, Yes, No}"
有人可以指出我执行此操作的正确方法吗?
谢谢。
I am using this markup extension
<DataGridTextColumn Header="Something"
Binding="{controls:SwitchBinding Something, Yes, No}" />
It all works fine, except that now I need to specify Path and Element Name for the Binding.(maybe even 'mode')
I have unsuccessfully tried:
Binding="{controls:SwitchBinding {Binding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks}, Yes, No}"
Can somebody please point me to the correct way of doing this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么要这样做?
请尝试以下操作:
编辑:
我在示例
WPF(.Net4)
(不是Silverlight
)应用程序中尝试了此操作。以下内容有效:Why would you do this??
Try the following:
Edit:
I tried this in a sample
WPF(.Net4)
(notSilverlight
) application. And the following worked: