gpt4 book ai didi

WPf : Binding with more than one property at a time

转载 作者:行者123 更新时间:2023-12-03 05:06:02 29 4
gpt4 key购买 nike

我有一个 ListView ,在其中使用绑定(bind)来显示我的信息。我使用一个简单的数据模板。有没有一种方法可以在一个控件中绑定(bind)两个数据。我的意思是替换类似的内容:



<p><TextBlock Text="{Binding LName}"/></p>

<p><TextBlock Text=", "/></p>

<p><TextBlock Text="{Binding NName}"/></p>

类似于

谢谢

最佳答案

如果您使用的是 WPF 3.5SP1 或更高版本,则无需为您的用例编写自己的值转换器。相反,只需使用StringFormat:

<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0}, {1}">
<Binding Path="LName" />
<Binding Path="FName"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>

关于WPf : Binding with more than one property at a time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1545054/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com