I am building a Metro Style App for Win8 which requires to pass two textblock values on frame navigation. For one parameter, it works but for two parameters its not working. Please help!
I have tried like the following:
this.Frame.Navigate(typeof(SecondPage),textblock1.Text + textblock2.Text);
I doesn’t show any error but its not working.
Create a new class with 2 properties and set the properties to the textblock values. Then you pass this object when you navigate.
Create the payload class:
Then populate the payload class:
Then when you call Navigate pass your instance of payload like this: