Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. using Xamarin.Forms;
  7.  
  8. namespace MenuHamb
  9. {
  10. public partial class App : Application
  11. {
  12. public static MasterDetailPage MasterDetail { get; set; }
  13. public App()
  14. {
  15. InitializeComponent();
  16.  
  17. MainPage = new MenuHamb.MainPage();
  18. }
  19.  
  20. protected override void OnStart()
  21. {
  22. // Handle when your app starts
  23. }
  24.  
  25. protected override void OnSleep()
  26. {
  27. // Handle when your app sleeps
  28. }
  29.  
  30. protected override void OnResume()
  31. {
  32. // Handle when your app resumes
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement