Hi ,
how navigate from one page to Another page in wpf windows
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjay KumarPosted Sep 16, 2013, 2:43 AM
Kiran Kumar TalikotiPosted Sep 16, 2013, 2:26 AM
check this,
Suppose If u have a button .If you click that button it will navigate to other page.
First u have to create an object for the page which u want to navigate and use navigation service method and pass that object .
EX:
private void button_Click()
{
Login log=new Login(); //this is the page u want to navigate
this.navigationservice.navigate(log); //pass obj of that page in navigate method
}
Iftikar HussainPosted Aug 27, 2013, 7:01 AM
Try like this
Regards,
Iftikar