I'm trying to add a custom alphabetical selection outside the SemanticZoom
in addition to alphabetical selection in the ZoomedOutView
, but I can't manage to manipulate the GridView
in the ZoomedInView
As of now the ItemSource
of the two alphabetical views are the same and are set in the code-behind.
The SemanticZoom
works fine, but what I'm trying to achieve is when one of the letters in the top right is clicked, it scrolls to the corresponding group in the ZoomedInView
.
Is there any way of achieving this?
(I didn't include any code as the code itself isn't the main issue here, but please let me know if it ought to be included)
Finally I came up with a work around. I am giving the Code but before that download the Gridview sample from msdn link.
GridView Sample
And changes to see the effect is to be done in ScenarioOutput1.xaml and ScenarioOutput1.xaml.cs.
So Lets Start with ScenarioOutput1.xaml Codethat I changed Please copy paste it into the project (GridView Demo from msdn) to see the effect if you have difficulty understanding the code.
ScenarioOutput1.xaml
Now the next part the cs file.
ScenarioOutput1.xaml.cs
Please implement it in the demo and see the effect. there might be other work arounds but wanted to clear the stuff as easy and soon as possible. Let me know if you have any trouble understanding :)