Reputation: 422
I am developing Windows Store App using C# and XAML. I would like to pass a string when moving from one page to another. For example,
private void filterData_Click(object sender, RoutedEventArgs e)
{
string str="mydata";
this.Frame.Navigate(typeof(QualityRecordsResults));
}
I need this str value in QualityRecordsResults.xaml.cs file.
Upvotes: 2
Views: 619