Answered by:
Start an app in Semantic Zoom

Question
-
Hi,
I was wondering if it was possible to start an app in Semantic Zoom view. I tried to exchange "SemanticZoom.ZoomedOutView" with "SemanticZoom.ZoomedInView" and the app started in Semantic Zoom, but clicking any of the groups entered a "check" state instead of zooming into the group.
Please advise.
Thanks.
Tuesday, August 14, 2012 6:21 AM
Answers
-
You could call the ToggleActiveView method in the pages OnNavigatedTo method.
this.semanticZoom.ToggleActiveView();
Note: Please revert the changes you made to ZoomedOutView and ZoomedInView before you try calling ToggleActiveView method
- Marked as answer by ReignOfComputer Tuesday, August 14, 2012 8:56 AM
Tuesday, August 14, 2012 6:46 AM -
Hi,
You could set IsZoomedInViewActive="False"
Here is the document about semanticZoom:
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.semanticzoom.aspx
Hope this helps
Aaron Xue [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Proposed as answer by Can Bilgin - CompuSight Tuesday, August 14, 2012 1:55 PM
- Marked as answer by ReignOfComputer Tuesday, August 14, 2012 3:19 PM
Tuesday, August 14, 2012 8:27 AM
All replies
-
You could call the ToggleActiveView method in the pages OnNavigatedTo method.
this.semanticZoom.ToggleActiveView();
Note: Please revert the changes you made to ZoomedOutView and ZoomedInView before you try calling ToggleActiveView method
- Marked as answer by ReignOfComputer Tuesday, August 14, 2012 8:56 AM
Tuesday, August 14, 2012 6:46 AM -
Hi,
You could set IsZoomedInViewActive="False"
Here is the document about semanticZoom:
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.semanticzoom.aspx
Hope this helps
Aaron Xue [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Proposed as answer by Can Bilgin - CompuSight Tuesday, August 14, 2012 1:55 PM
- Marked as answer by ReignOfComputer Tuesday, August 14, 2012 3:19 PM
Tuesday, August 14, 2012 8:27 AM -
Thanks for the replies. I've tried Venkata's method and it appears to have solved my issue.
Tuesday, August 14, 2012 8:57 AM