wpf - 如何使用带有标记扩展的 Path、ElementName

发布于 2024-10-15 05:24:37 字数 521 浏览 3 评论 0原文

我正在使用这个标记扩展

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星軌x 2024-10-22 05:24:37

你为什么要这样做?

Binding="{controls:SwitchBinding {Binding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks}, Yes, No}

请尝试以下操作:

Binding="{controls:SwitchBinding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks, ValueIfTrue=Yes, ValueIfFalse=No}

编辑:

我在示例 WPF(.Net4)(不是 Silverlight)应用程序中尝试了此操作。以下内容有效:

<CheckBox Name="CheckBox1"
            IsChecked="True" />
<TextBlock Name="TextBlock1"
            Text="{local:SwitchBinding ElementName=CheckBox1, Path=IsChecked, ValueIfTrue=Yes, ValueIfFalse=No}" />

Why would you do this??

Binding="{controls:SwitchBinding {Binding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks}, Yes, No}

Try the following:

Binding="{controls:SwitchBinding Path=SelectedItem.SystemDefined, ElementName=dgrdStatementBlocks, ValueIfTrue=Yes, ValueIfFalse=No}

Edit:

I tried this in a sample WPF(.Net4) (not Silverlight) application. And the following worked:

<CheckBox Name="CheckBox1"
            IsChecked="True" />
<TextBlock Name="TextBlock1"
            Text="{local:SwitchBinding ElementName=CheckBox1, Path=IsChecked, ValueIfTrue=Yes, ValueIfFalse=No}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文