What is the clean way to display the edit page in a windows phone app?

Is there a standard way to put input form in WP7 silverlight?

I am currently planning to use NavigationService to go to another page, but I was wondering if there is a better way.

+3
source share
1 answer

I found that the best way is to create a separate page. As mentioned in the keyboard description, you may potentially have strange navigation problems if, when you finish editing, you go to the screen you came from. This gives you a stack that looks like

List Page (then navigate to Edit Page)
List Page -> Edit Page (then hit Save)
List Page -> Edit Page -> List Page

, , . , Navigate, "GoBack", ListPage, .

List Page (then navigate to Edit Page)
List Page -> Edit Page (then hit Save)
List Page

, , , .

+5

All Articles