I'm creating an app for Windows store using C#. I need to pass a string variable to another page. I have already tried using this variable as an input parameter of the page where the variable is going to be used, like this:
In the page where the variable was created:
this.Frame.Navigate(typeof(MainMenu(Variable)));
In the page where the variable is going to be used:
public PageName(string Variable)
{
this.InitializeComponent();
}
so, something like winforms, obviously doesn't work to windows store