I have 4 images in my Directory resource in my portable project and I would like to use them directly for ImageSource (because I need to link it).
ImageSource myImageSource = ImageSource.FromResource("resources.image.png");
I tried this, but it does not recognize the path. How can I use my images for ImageSource?
Elykx source
share