Is there a standard way to put up an entry form in WP7 silverlight?
I’m currently planning on using the NavigationService to navigate to another page, but I was wondering if there was a better way.
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.
I’ve found the best way is to have a separate page. As keyboardP mentioned you can potentially have weird navigation issues IF on completion of the edit you navigate back to the screen you came from. This gives you a stack that looks like
This isn’t good because the user hits back and they end up on the Edit Page. The better solution is rather than calling Navigate, you call “GoBack” to take you back to the ListPage, this gives you a stack like.
This also gives you advantage of being able to navigate to the edit page from anywhere in your app and it’ll move straight back to where they came from.