
How would you go about making a scrollviewer contain two grids that are screen sized?
One thing I thought up was to have the Grid size set to the screen size programmically, but I would imagine MS having a better solution.
The grouping I came up with:
<SematicZoom.ZoomedIn>
<ScrollViewer //Horizontal>
<StackPanel //Orientation is Horizontal>
<Grid Height = "{Binding ScreenHeight}" Width = "{Binding ScreenWidth}">
//Content
</Grid>
<Grid Height = "{Binding ScreenHeight}" Width = "{Binding ScreenWidth}">
//Content
</Grid>
</StackPanel>
</ScrollViewer>
</SematicZoom.ZoomedIn>