Xamarin Forms:如何在 PCL Project for Image 中使用嵌入式资源

Xamarin Forms: How to use Embedded Resources in PCL Project for Image

我的 Resources 目录中有 4 张图像到我的 Portable Project 中,我想直接将它们用于 ImageSource(因为我需要绑定它)。

ImageSource myImageSource = ImageSource.FromResource("resources.image.png");

我试过了,但它无法识别路径。如何将我的图像用于 ImageSource?

好吧,不好意思,我忘记了资源目录前的项目名称

ImageSource myImageSource = ImageSource.FromResource("NameOfProject.Resources.image.png");