Advertisement
smeacham

App.cs

Jun 2nd, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.66 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 TrivialDataBindingDemoVS
  9. {
  10.     public class App : Application
  11.     {
  12.         public App()
  13.         {
  14.             // The root page of your application
  15.             MainPage = new ItemPage();
  16.         }
  17.  
  18.         protected override void OnStart()
  19.         {
  20.             // Handle when your app starts
  21.         }
  22.  
  23.         protected override void OnSleep()
  24.         {
  25.             // Handle when your app sleeps
  26.         }
  27.  
  28.         protected override void OnResume()
  29.         {
  30.             // Handle when your app resumes
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement