gpt4 book ai didi

fonts - 标签 Xamarin 表单中的粗体字

转载 作者:行者123 更新时间:2023-12-02 08:08:18 26 4
gpt4 key购买 nike

这是我的 ContentPage 的标签:

<Label FontSize="Small"
Grid.Row="0"
Grid.Column="0"
VerticalOptions="Center"
Text="{Binding ItemCode,StringFormat='Code: {0}'}">
</Label>

我想将粗体字体应用到文本“代码:”的这一部分,有没有办法在axml页面上做到这一点?

最佳答案

您可以使用 FormattedText 属性来设置文本的部分。像这样:

<Label Grid.Row="0"
Grid.Column="0"
FontSize="Small"
VerticalOptions="Center" >
<Label.FormattedText>
<FormattedString>
<FormattedString.Spans>
<Span Text="Code: "
FontAttributes="Bold"/>
<Span Text="{Binding ItemCode}" />
</FormattedString.Spans>
</FormattedString>
</Label.FormattedText>
</Label>

关于fonts - 标签 Xamarin 表单中的粗体字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49489021/

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