Exemplo n.º 1
0
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);
            CardType card = PhoneApplicationService.Current.State["CurrentCard"] as CardType;

            CardPivot.Title       = "Scrumboard : Card : " + card.Name;
            cardView.SelectedCard = card;
            cardView.LoadCardPage(card.ID);
            cardView.LoadUsersAutocomplete();
            boardView.LoadAllMyBoardsPage();
            listView.LoadBoardListPage();
        }