Answered by:
Navigation to basic page from Grouped item page?

Question
-
I new to windows store app and would like to have a grouped item page as the main page and it will navigate to basic page to perform some form action,
Want to ask is it possible?
and how to change
this.Frame.Navigate(typeof(SplitPage), groupId);
to be able to navigate to a list of basic pages?
Sunday, October 13, 2013 11:16 AM
Answers
-
Hi,spothao
You can get the item id in the item clicked event,and then navigate to the basic page
which displays the item detail information and pass the id information to the basic page.
There is a link you can see to know how to navigation between pages:
http://msdn.microsoft.com/en-us/library/windows/apps/br211380.aspx
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.Monday, October 14, 2013 8:17 AM
All replies
-
how you called you back basic page? in the GroupedItemPage just type: Frame.Navigate(typeof(NameOfYourBasicPage));
Microsoft Certified Solutions Developer - Windows Store Apps Using C#
Sunday, October 13, 2013 12:43 PM -
Because i see the code inside GroupedItemPage is generated with a class file, and the splitpage also used the same class file for reading.
I want to use a GroupedItemPage as a homepage with a class file and navigate to specific page based on the item clicked with groupId in class file.
- Edited by spothao Sunday, October 13, 2013 1:06 PM
Sunday, October 13, 2013 1:04 PM -
Hi,spothao
You can get the item id in the item clicked event,and then navigate to the basic page
which displays the item detail information and pass the id information to the basic page.
There is a link you can see to know how to navigation between pages:
http://msdn.microsoft.com/en-us/library/windows/apps/br211380.aspx
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.Monday, October 14, 2013 8:17 AM