Advertisement
Guest User

Untitled

a guest
Oct 24th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. using System;
  2. using Xamarin.Forms;
  3. using Xamarin.Forms.Xaml;
  4.  
  5. [assembly: XamlCompilation(XamlCompilationOptions.Compile)]
  6. namespace App6
  7. {
  8. public partial class App : Application
  9. {
  10. public App()
  11. {
  12. InitializeComponent();
  13.  
  14. MainPage = new NavigationPage( new ContactsPage());
  15. }
  16.  
  17. protected override void OnStart()
  18. {
  19. // Handle when your app starts
  20. }
  21.  
  22. protected override void OnSleep()
  23. {
  24. // Handle when your app sleeps
  25. }
  26.  
  27. protected override void OnResume()
  28. {
  29. // Handle when your app resumes
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement