I made application in windows phone (Using Windows Phone SDK 7.1 /C#).
But am stuck, I had applied a button for displaying result but my page is full of contents.
So can I link this button to a seperate page which will display result(obvious that this page cannot be viewed in any ways else as my result is random and the best part in my application).
Thank you.
I made application in windows phone (Using Windows Phone SDK 7.1 /C#). But am
Share
Yes, you can have this is a separate page and navigate to it via the
NavigationService. It sounds like you are struggling with how to structure your application. I would recommend reading this tutorial a wrote a little while back:A Simple Windows Phone 7 MVVM Tombstoning Example
It details how to navigate from page to page, and includes source code.