您将如何使滚动查看器包含两个屏幕大小的网格?
我想到的一件事是以编程方式将网格大小设置为屏幕大小,但我想 MS 有更好的解决方案。
我想出的分组:
<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>