summaryrefslogtreecommitdiff
path: root/PagesGallery/PagesGallery/App.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'PagesGallery/PagesGallery/App.xaml.cs')
-rw-r--r--PagesGallery/PagesGallery/App.xaml.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/PagesGallery/PagesGallery/App.xaml.cs b/PagesGallery/PagesGallery/App.xaml.cs
new file mode 100644
index 00000000..5cad242d
--- /dev/null
+++ b/PagesGallery/PagesGallery/App.xaml.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+using Xamarin.Forms;
+
+namespace PagesGallery
+{
+ public partial class App : Application
+ {
+ public App ()
+ {
+ InitializeComponent ();
+
+ var eventsPage = new EventsPage ();
+ var speakersPage = new SpeakersPage ();
+ MainPage = new NavigationPage (new TabbedPage {
+ Title = "Xamarin Evolve 2016",
+ Children = {
+ eventsPage,
+ speakersPage
+ }
+ });
+ }
+
+ protected override void OnStart ()
+ {
+ // Handle when your app starts
+ }
+
+ protected override void OnSleep ()
+ {
+ // Handle when your app sleeps
+ }
+
+ protected override void OnResume ()
+ {
+ // Handle when your app resumes
+ }
+ }
+}