Exemplo n.º 1
0
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);
            if (NavigationContext.QueryString.Count > 0)
            {
                int gameID = Convert.ToInt32(NavigationContext.QueryString["gameID"]);

                _vm.Initialize(gameID);
            }
        }