示例#1
0
        void GameButton_Click(object sender, System.Windows.RoutedEventArgs e)
        {
            GameInformationModel gameInformationModel = (sender as KinectTileButton).Tag as GameInformationModel;
            GameIntroductionPage gameIntroductionPage = new GameIntroductionPage(gameInformationModel);

            this.NavigationService.Navigate(gameIntroductionPage);
        }
 public GameIntroductionPage(GameInformationModel informationModel)
 {
     this.DataContext          = informationModel;
     _gameDescriptionImagePath = "Images/Signing.png";
     InitializeComponent();
 }