我剛開始了一個Xamarin.Forms應用程序,我想爲我的XAML添加背景圖片。 我添加了屬性,但它在運行時不會顯示! 這是圖像。Xamarin.Forms Xaml背景圖片
APP
public class App : Application
{
public App()
{
// The root page of your application
MainPage = new Page();
}
XAML:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App1.Page"
BackgroundImage="bg.png">
那麼,該如何解決呢?
你好SushiHangover, 我只是這樣做,靜靜的,沒有出現= X – Biellx
@Biellx我加了一些信息,以我的回答,請確保該圖像是在正確的文件夾,並指派了正確生成操作。清理並重建並重新部署到您的設備/仿真程序... – SushiHangover
Yeaa,我認爲問題是構建操作,我如何將構建操作設置爲該圖像?] – Biellx