diff options
Diffstat (limited to 'WPZX81/WPZX81/MainPage.xaml.cs')
-rw-r--r-- | WPZX81/WPZX81/MainPage.xaml.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/WPZX81/WPZX81/MainPage.xaml.cs b/WPZX81/WPZX81/MainPage.xaml.cs new file mode 100644 index 0000000..d248f55 --- /dev/null +++ b/WPZX81/WPZX81/MainPage.xaml.cs @@ -0,0 +1,30 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+using Microsoft.Phone.Controls;
+
+namespace WPZX81
+{
+ public partial class MainPage : PhoneApplicationPage
+ {
+ // Constructor
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ // Simple button Click event handler to take us to the second page
+ private void Button_Click(object sender, RoutedEventArgs e)
+ {
+ NavigationService.Navigate(new Uri("/GamePage.xaml", UriKind.Relative));
+ }
+ }
+}
\ No newline at end of file |