gpt4 book ai didi

xamarin.forms - 标签中的上标文本

转载 作者:行者123 更新时间:2023-12-04 01:56:10 26 4
gpt4 key购买 nike

是否可以在 Xamarin Forms 中为标签添加上标?在 HTML 中我会使用 <sup>标签。我想在文本“min”上标上标。所以我可以在文本“5min”上标上“min”部分。

最佳答案

LabelTextType 属性设置为 Html

例如,产生:x2 + y

在 XAML 中:

<Label Text="x&lt;sup&gt;&lt;small&gt;2&lt;/small&gt;&lt;/sup&gt; + y" TextType="Html"/>

<Label TextType="Html">
<![CDATA[
x<sup><small>2</small></sup> + y
]]>
</Label>

在 C# 中:

MyStackLayout.Children.Add(
new Label {
TextType=TextType.Html,
Text="x<sup><small>2</small></sup> + y"
});

请注意, 标记是可选的。

有关详细信息,请参阅 Label 文档的“显示 HTML”部分:Xamarin.Forms Label: Display HTML

关于xamarin.forms - 标签中的上标文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50475888/

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