I have a second .xaml page set up under the name Page2.xaml
and I want to make it so that when my button is clicked, the user is taken to <
You should use this, this worked for me:
var Page2= new Page2(); //create your new form.
Page2.Show(); //show the new form.
this.Close(); //only if you want to close the current form.
There is a variable type
of a page with the page.xaml right name in your solution.
after that, you should use its methods to do it functionally.