Jypeli  5
The simple game programming library
MainPage.xaml.cs
Siirry tämän tiedoston dokumentaatioon.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Net;
5 using System.Windows;
6 using System.Windows.Controls;
7 using System.Windows.Documents;
8 using System.Windows.Input;
9 using System.Windows.Media;
10 using System.Windows.Media.Animation;
11 using System.Windows.Shapes;
12 using Microsoft.Phone.Controls;
13 
14 namespace SilverStorageTest
15 {
16  public partial class MainPage : PhoneApplicationPage
17  {
18  public MainPage()
19  {
20  InitializeComponent();
21  }
22 
23  private void buttonSimpleTest_Click( object sender, RoutedEventArgs e )
24  {
25  NavigationService.Navigate( SimplePage.URI );
26  }
27 
28  private void buttonArrayTest_Click( object sender, RoutedEventArgs e )
29  {
30  NavigationService.Navigate( ArrayPage.URI );
31  }
32 
33  private void buttonListTest_Click( object sender, RoutedEventArgs e )
34  {
35  NavigationService.Navigate( ListPage.URI );
36  }
37 
38  private void buttonFileExplorer_Click( object sender, RoutedEventArgs e )
39  {
40  NavigationService.Navigate( FilePage.URI );
41  }
42  }
43 }