- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我可以使用 XAML 代码中的选项卡来测量页面上令人印象深刻的字体图标,如下所示:
<ContentPage.IconImageSource>
<FontImageSource FontFamily="{StaticResource Solid }" Glyph="" ></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/
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and t
我正在开发一个 rdp 虚拟 channel 应用程序。我已经在注册表中注册了客户端 dll 并试图理解,客户端 dll 已加载。但是当从 pEntryPoints 调用 pVirtualChanne
是否可以通过 GPRS(USB 棒)绑定(bind)(聚合)多个连接并将其用作 Linux 中的一个链接? 最佳答案 技术上是可行的。 Linux 有一个名为 bonding 的模块它可以将多个接口(
我的主容器 div 可以刷新,所以它的内容被隐藏/显示。当我的容器 div 隐藏时,我的页脚会弹出。 html 结构如下所示: 注意我已经试过了: 而且它似乎不起作用,当隐藏容器 div 时,页脚 d
我有一个问题,我可以使用 wpa_suppli 进行无线连接 cant on some network, but i need to connect on a network where the SS
我是一名优秀的程序员,十分优秀!