App.xaml.cs 483 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using Xamarin.Forms;
  4. namespace DataPages
  5. {
  6. public partial class App : Application
  7. {
  8. public App()
  9. {
  10. InitializeComponent();
  11. MainPage = new NavigationPage(new MainView());
  12. }
  13. protected override void OnStart()
  14. {
  15. // Handle when your app starts
  16. }
  17. protected override void OnSleep()
  18. {
  19. // Handle when your app sleeps
  20. }
  21. protected override void OnResume()
  22. {
  23. // Handle when your app resumes
  24. }
  25. }
  26. }