Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have developed a windows phone user control which has only Browser control in it's grid. I am navigating to this Browser control from my main page of app upon clicking a button. This browser control load Facebook authentication page.After posting the message to facebook , I want to go back to my main app .

For this I tried to hide the Browser control and i have set visibility to collapsed,and it shows a blank screen.

Any help on how can I go back to the main app which has called this browser control and maintain the same state as before ?

share|improve this question

1 Answer

The following code works...

 (Application.Current.RootVisual as PhoneApplicationFrame).GoBack()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.