I have to open a master page on button click.
I have a custom header in which there is button.When I click on button it should open master page.
Master page name is MasterPage.xaml.
void OnBtnClicked(object sender, EventArgs args)
{
Button btn = (Button)sender;
// What should I write here
}