03-01-2013 03:57 AM
So I have a page that can be pushed from two different NavigationPanes. The problem is when I want to pop the page, I'm not sure how to call the pop since I don't know which of the two panes the push came from.
Is there a simple way to get the id of the page that did the pushing?
03-01-2013 04:00 AM
03-01-2013 08:38 AM - edited 03-01-2013 08:44 AM
I remembered we had discussed one similar issue:
You can simply use xxx.parent to find the parent (xxx is the id of the current page)
You can use xxx.parent.pop() to pop the current page.