Xamarin Forms - how to add background image to a content page

前端 未结 2 1174
闹比i
闹比i 2020-12-19 06:46

I am trying to assign Background Image to my content designed in xaml. I have tried different approaches but it is not showing me background image. Here is the

相关标签:
2条回答
  • 2020-12-19 07:22
    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 讨论(0)
  • 2020-12-19 07:25

    My suggestion is to put images to folder:

    for Android Resources/drawable

    for iOS Resources

    0 讨论(0)
提交回复
热议问题