gpt4 book ai didi

c# - 将文本转换为 MultiBinding

转载 作者:行者123 更新时间:2023-11-30 20:48:08 25 4
gpt4 key购买 nike

我在尝试将现有 XAML 转换为 MultiBinding 时遇到问题。
当前代码(需要替换)是

<TextBlock  Text="{Binding BarcodeCollection.Count}" />
<TextBlock Text="{x:Static p:Resource.AllWN}" />


我现在拥有的:

<control:MyControl>
<control:MyControl.ControlText>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="BarcodeCollection.Count"/> <!-- This part works fine -->
<Binding ??? /> <!-- No idea how to re-write this part -->
</MultiBinding>
</control:MyControl.ControlText>
</control:MyControl>

我尝试了很多我能想到的方法来使第二部分正常工作,但无法弄清楚。我尝试使用 Path 但它不是 路径所以显然它不起作用。我还通过 StringFormatSourceRelativeSource 尝试了各种变体,但似乎没有任何效果。

有人有什么想法吗?有可能吗?

最佳答案

你必须像这样设置 Source:

<Binding Source="{x:Static p:Resource.AllWN}"/>

关于c# - 将文本转换为 MultiBinding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25038352/

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