Skip to content

Working with images

jpbrocca edited this page May 28, 2016 · 1 revision

Working with images

Gorilla Player allows to preview your app images without any additional steps you take when adding images on a Xamarin Forms project.

Adding images to your resources folder

Just include the images you need on the Resource folder of your project as usually:

  1. Locate the Resources folder
  2. Click add > Add Files... > 3. Select the files you need to include.

image

...or simply drag and drop your images into that Resources folder of your project as you would typically do on Xamarin Studio.

Adding images on your XAML

Simply add the Image control and point the Source attribute to your image:

<Image Source="YourImage.png" />