Reputation: 11
I'm creating a solution in order to run on a raspberry pi2 with Windows IOT, Created a button, and I was wondering if there was a way to show a second XAML page I created, by a button event such as Button_Click, in the said frame.
Upvotes: 0
Views: 6419
Reputation:
Just to answer the question, you can use Frame.Navigate(typeof(<YourPage>))
. I'd suggest reading some articles such as this, for more info.
Upvotes: 1