diff options
Diffstat (limited to 'WPZX81/WPZX81/MainPage.xaml.cs')
-rw-r--r-- | WPZX81/WPZX81/MainPage.xaml.cs | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/WPZX81/WPZX81/MainPage.xaml.cs b/WPZX81/WPZX81/MainPage.xaml.cs index d248f55..0ef376a 100644 --- a/WPZX81/WPZX81/MainPage.xaml.cs +++ b/WPZX81/WPZX81/MainPage.xaml.cs @@ -21,10 +21,34 @@ namespace WPZX81 InitializeComponent();
}
- // Simple button Click event handler to take us to the second page
- private void Button_Click(object sender, RoutedEventArgs e)
+ private void RunEmulationClick(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/GamePage.xaml", UriKind.Relative));
}
+
+ private void OpenRemotePFileClick(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void OpenGameStateClick(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void SaveGameStateClick(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void SettingsClick(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void AboutClick(object sender, RoutedEventArgs e)
+ {
+ NavigationService.Navigate(new Uri("/AboutPage.xaml", UriKind.Relative));
+ }
}
}
\ No newline at end of file |