summaryrefslogtreecommitdiff
path: root/PagesGallery/PagesGallery.Windows/MainPage.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'PagesGallery/PagesGallery.Windows/MainPage.xaml.cs')
-rw-r--r--PagesGallery/PagesGallery.Windows/MainPage.xaml.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/PagesGallery/PagesGallery.Windows/MainPage.xaml.cs b/PagesGallery/PagesGallery.Windows/MainPage.xaml.cs
new file mode 100644
index 00000000..3029e7c2
--- /dev/null
+++ b/PagesGallery/PagesGallery.Windows/MainPage.xaml.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+using Windows.UI.Xaml;
+using Windows.UI.Xaml.Controls;
+using Windows.UI.Xaml.Controls.Primitives;
+using Windows.UI.Xaml.Data;
+using Windows.UI.Xaml.Input;
+using Windows.UI.Xaml.Media;
+using Windows.UI.Xaml.Navigation;
+
+namespace PagesGallery.Windows
+{
+ public sealed partial class MainPage
+ {
+ public MainPage ()
+ {
+ this.InitializeComponent ();
+
+ LoadApplication (new PagesGallery.App ());
+ }
+ }
+}