I know it exists on Silverlight but how about WPF?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Read this part of the MSDN
Page navigation in WPF is different from Silverlight/Phone because you can opt -in for KeepAlive.
In short: use Loaded and Unloaded. KeepAlive will only influence whether or not a new instance is created.
EDIT
An alternative is to subscribe to the this.NavigationService.Navigated event but that does not get raised just for your page as far as I know.