2016-08-15 112 views
4

我想將背景圖片分配給我在xaml中設計的內容。我嘗試了不同的方法,但沒有向我展示背景圖片。這是我寫的代碼:Xamarin Forms - 如何將背景圖片添加到內容頁面

內容頁:

<?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是在我的便攜式投影影像,我想設置爲背景。我將財產

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

而下面是我的項目的目錄結構。

Directory Structure

+0

1.你有生成操作作爲「嵌入式資源」的圖像? 2.它不適用於這兩個平臺? 3.嘗試爲網絡使用圖片,看它是否有效。 – BraveHeart

回答

12

我的建議是把圖像文件夾:

的AndroidResources/drawable

的iOSResources

+0

你是對的:) – user2988458

+0

根據屏幕大小,你可能需要使用的不僅僅是可繪製的文件夾 – Darren

1
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"; 
    } 
} 
+0

僅供參考這個問題表明他們使用XAML,所以答案應該是這樣。 – Darren

相關問題