Xamarin Forms - Hinzufügen eines Hintergrundbilds zu einer Inhaltsseite

Ich versuche, meinem in @ erstellten Inhalt ein Hintergrundbild zuzuweisexaml. Ich habe verschiedene Ansätze ausprobiert, aber es zeigt mir kein Hintergrundbild. Hier ist der Code, den ich geschrieben habe:

Inhaltsseite

<?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 ist ein Bild in meinem tragbaren Projekt, das ich als Hintergrund festlegen möchte, und ich habe die Eigenschaft @ festgeleg

Build Action = "Content" unCopy to Output Directory = "Copy Always"

Und unten ist die Verzeichnisstruktur meines Projekts.

Antworten auf die Frage(4)

Ihre Antwort auf die Frage