dxmfans

using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
namespace App10
{
    public partial class App : Application
    {
        public App ()
        {
            InitializeComponent();

            MainPage = new MasterDetailPage1();//删掉MainPage,然后添加主从页面
        }

        protected override void OnStart ()
        {
            // Handle when your app starts
        }

        protected override void OnSleep ()
        {
            // Handle when your app sleeps
        }

        protected override void OnResume ()
        {
            // Handle when your app resumes
        }
    }
}
 

分类:

技术点:

相关文章:

  • 2021-07-31
  • 2021-07-28
  • 2022-01-06
  • 2022-12-23
  • 2021-07-06
  • 2022-12-23
  • 2022-01-01
  • 2022-12-23
猜你喜欢
  • 2021-09-11
  • 2021-11-09
  • 2021-05-28
  • 2021-10-16
  • 2022-03-13
  • 2022-12-23
  • 2022-02-14
相关资源
相似解决方案