Пример #1
0
        public App()
        {
            // The root page of your application
            var content = new SpeakersPage();

            MainPage = new NavigationPage(content);
        }
Пример #2
0
        public App()
        {
            AzureClient = EasyMobileServiceClient.Create();
            AzureClient.Initialize("https://montemagnospeakers.azurewebsites.net");
            AzureClient.RegisterTable<Model.Speaker>();
            AzureClient.FinalizeSchema();

            // The root page of your application
            var content = new SpeakersPage();

            MainPage = new NavigationPage(content);
        }