gpt4 book ai didi

c# - 如何在 Xamarin.Forms 中用引号括起字符串

转载 作者:行者123 更新时间:2023-11-30 21:37:47 25 4
gpt4 key购买 nike

所以我有一个标签绑定(bind)到我的 View 模型中的一些文本,如下所示:

<Label VerticalOptions="Center" Text="{Binding Note, StringFormat='&quot;{0}&quot;'}" Style="{StaticResource ListItemSubTitleStyleDefault}" LineBreakMode="WordWrap" FontAttributes="Italic"/>

我正试图让注释像这样用引号括起来

"I am a Note"

查看一些 WPF 答案,它建议在 StringFormat 属性中使用以下内容 '"{0}"'

但这似乎行不通。有谁知道如何在 Xamarin.Forms 中用引号将 Labels 文本括起来?

最佳答案

如您所见,在这种情况下,Xamarin.Forms 不同于 WPF。对于 Xamarin,执行此操作:

<Label VerticalOptions="Center" Text="{Binding Note, StringFormat='{}&quot;{0}&quot;'}" .../>

为了防止运行时忽略双引号,第一个双引号要么必须转义(如上所述),要么不能紧跟在单引号之后(见下文)。

因此,例如,在两者之间插入一个空格也是可行的:

<Label VerticalOptions="Center" Text="{Binding Note, StringFormat=' &quot;{0}&quot;'}" .../>

对于后一种解决方案,双引号之前至少会呈现一个字符。

关于c# - 如何在 Xamarin.Forms 中用引号括起字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46853137/

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