web-dev-qa-db-fra.com

Xamarin Forms - comment ajouter une image de fond à une page de contenu

J'essaie d'attribuer une image d'arrière-plan à mon contenu conçu dans xaml. J'ai essayé différentes approches mais cela ne me montre pas l'image de fond. Voici le code que j'ai écrit: 

Page de contenu:  

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.Microsoft.com/winfx/2009/xaml"
             x:Class="Demo.Welcome"
             BackgroundImage="bg1.jpg">

  <ContentPage.Content>
    <StackLayout  HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Spacing="25" Padding="0" x:Name="stackLayoutMain">
      <Label FontSize="40" Text="WelCome Page" HorizontalOptions="Start" VerticalOptions="StartAndExpand"></Label>
      <Entry Placeholder="Activation Key" WidthRequest="200" FontSize="15" HorizontalOptions="Center" VerticalOptions="StartAndExpand" TextChanged="entryActivationTextChanged" x:Name="entryActivationKey" Keyboard="Numeric" HorizontalTextAlignment="Center"></Entry>
      <Button
        x:Name="buttonActivate"
        BackgroundColor="#fff"
        Text="Activate"
        WidthRequest="100"
        HeightRequest="50"
        HorizontalOptions="Center"
        VerticalOptions="StartAndExpand"
        TextColor="#377CC1"
        IsVisible="False"
        Clicked="buttonActivateClicked" >
      </Button>
    </StackLayout>
  </ContentPage.Content>
</ContentPage>

bg1.jpg est une image dans mon projet portable que je veux définir comme arrière-plan et que j'ai défini la propriété 

  • Build Action = "Content" et 
  • Copy to Output Directory = "Copy Always"

Et voici la structure de répertoires de mon projet. 

 Directory Structure

5
confusedDeveloper

Ma suggestion est de mettre les images dans un dossier:

pour Android Resources/drawable

pour iOS Resources

13
Yehor Hromadskyi
public class MainPage : ContentPage
{
    List<string> objEmpCollections = new List<string>();
    public MainPage()
    {
        this.Title = "V V I P's";
        //this.BackgroundColor = Color.Maroon;
        this.BackgroundImage = "EmpMgmtPCL.Images.NPO-Events-bg.png";
    }
}
1
Kokul Jose