如何绑定到 wpf 中的动态内容?

发布于 2024-10-02 01:08:05 字数 434 浏览 4 评论 0原文

简而言之,我的情况是,如果我有一个文本框,我们称其为 A。 当我更新此文本框中的值时,它应该更新标签 - B. 当 B 更改时,它应该更新另一个标签 C。

所以,实际上我希望以 C 绑定到 B 的形式进行绑定,B 又绑定到 A。

我已经尝试了以下操作,但 C 从未更新。

    <TextBox Grid.Row="0" Name="A"/>        
    <Label Grid.Row="1" Name="B" Content="{Binding Text, ElementName=A, UpdateSourceTrigger=PropertyChanged}"/>
    <Label Grid.Row="2" Name="C" Content="{Binding Text, ElementName=B}"/>

My Situation put simply is that if i have a textbox, lets call it A.
when i update the value in this text box it should update a label - B.
when B changes then it should update another label C.

so, effectively i wish to emply binding in the form of C bind to B which binds to A.

i have tried the following but C never gets updated.

    <TextBox Grid.Row="0" Name="A"/>        
    <Label Grid.Row="1" Name="B" Content="{Binding Text, ElementName=A, UpdateSourceTrigger=PropertyChanged}"/>
    <Label Grid.Row="2" Name="C" Content="{Binding Text, ElementName=B}"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

沫尐诺 2024-10-09 01:08:05

尝试这样:

<TextBox Grid.Row="0" Name="A"/>
<Label Grid.Row="1" Name="B" Content="{Binding Text, ElementName=A}"/>
<Label Grid.Row="2" Name="C" Content="{Binding Content, ElementName=B}"/>

您必须绑定到 Content 属性。

Try it like this:

<TextBox Grid.Row="0" Name="A"/>
<Label Grid.Row="1" Name="B" Content="{Binding Text, ElementName=A}"/>
<Label Grid.Row="2" Name="C" Content="{Binding Content, ElementName=B}"/>

You have to bind to the Content property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文