作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在代码中设置图像源并指向 PCL 项目中特定文件夹中的嵌入图像(在本例中为“图像”)时,我会这样做:
backgroundImg.Source = ImageSource.FromResource("Myapp.Images." + imageName + ".jpg");
最佳答案
@Code Pope 在他的回答中是正确的,但您还需要添加一个“ImageResourceExtension”,如@Gerald Versluis 的评论中所述。
为此,只需创建一个新文件(类)“ImageResourceExtension.cs”,如下所示:
using System;
using System.Reflection;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace ImageResourceExtension
{
[ContentProperty (nameof(Source))]
class ImageResourceExtension : IMarkupExtension
{
public string Source { get; set; }
public object ProvideValue(IServiceProvider serviceProvider)
{
if (Source == null)
{
return null;
}
var imageSource = ImageSource.FromResource(Source, typeof(ImageResourceExtension).GetTypeInfo().Assembly);
return imageSource;
}
}
}
然后添加
xmlns:local="clr-namespace:ImageResourceExtension"
到您的 xaml 文件,如下所示:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ImageResourceExtension"
...
现在您可以使用 xaml 代码访问嵌入式资源,如下所示:
<Image Source="{local:ImageResource MyProject.Resources.Images.Logo.png}" />
关于image - 如何在 Xamarin.Forms 中使用 XAML 从嵌入式资源设置图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54090850/
我是一名优秀的程序员,十分优秀!