I am trying to develop a app for windows phone 8.1. I am complete beginner in app dev. Right now my question is - how can I displaay the information passed in another page inside a textbox or some sort. Its a shopping app and I am trying to get the name of the item which is a button, appear in the Basket page when the basket is clicked on. Code is below. So i.e. Item from Menu.xaml show up in Basket.xaml when button in Menu.xaml is selected.
Basket.Xaml
protected override void OnNavigatedTo(NavigationEventArgs e)
{
Menu.PassedData data = e.Parameter as Menu.PassedData;
}
So say for example I have a txt box in Basket.xaml which aims to show the Item chosen in Menu.xaml how can I go about doing that?