gpt4 book ai didi

xamarin - 将很棒的字体图标放在 C# 代码后面

转载 作者:行者123 更新时间:2023-12-02 10:11:11 25 4
gpt4 key购买 nike

目前,我可以使用 XAML 代码中的选项卡来测量页面上令人印象深刻的字体图标,如下所示:

<ContentPage.IconImageSource>
<FontImageSource FontFamily="{StaticResource Solid }" Glyph="&#xf108;" ></FontImageSource>
</ContentPage.IconImageSource>

这样我就可以在我的应用程序中放置图标,但我想从代码隐藏中执行此操作,因为必须通过某些操作创建选项卡式页面,我按照以下方式完成了操作:

 contenido.IconImageSource  = new ContentPage().IconImageSource {
new FontImageSource().FontFamily = "\uf108";
};

但在第一个“{”中,我收到错误消息“我期望一个;”

更新

代码App.xaml

<Application.Resources>
<ResourceDictionary>
<!--Global Styles-->
<Color x:Key="NavigationPrimary">#2196F3</Color>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{StaticResource NavigationPrimary}" />
<Setter Property="BarTextColor" Value="White" />
</Style>

<OnPlatform x:TypeArguments="x:String"
x:Key="Brands">
<On Platform="Android"
Value="BrandsRegular.otf#Regular" />
</OnPlatform>

<OnPlatform x:TypeArguments="x:String"
x:Key="Regular">
<On Platform="Android"
Value="FreeRegular.otf#Regular" />
</OnPlatform>

<OnPlatform x:TypeArguments="x:String"
x:Key="Solid">
<On Platform="Android"
Value="FreeSolid.otf#Regular" />
</OnPlatform>


</ResourceDictionary>
</Application.Resources>

最佳答案

您不需要创建新的 ContentPage,只需创建一个 FontImageSource 对象并相应地设置值,然后将此对象传递给 IconImageSource contenido 页。

此外,您还需要从应用程序资源字典中获取 StaticResource。

这样的事情应该有效:

var solidFontFamily = Application.Current.Resources["Solid"] as OnPlatform<string>;
contenido.IconImageSource = new FontImageSource() { FontFamily = solidFontFamily, Glyph= "\uf108" };

希望这有帮助。-

关于xamarin - 将很棒的字体图标放在 C# 代码后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60235196/

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