我想在页面顶部放置一个广告,其中包含应用程序名称和数据透视表。我想让PivotItems中的内容可滚动。因此,我将scrollviewer放在pivotitem块之外。我先尝试将AdControl和Pivot放在网格中,然后再放入StackPanel,但在每种情况下,我都无法滚动数据透视图的内容。 PivotItem之间的切换工作得很好。在哪里可以放置ScrollViewer以获得所需的效果?另外,在我的布局中还有其他地方,这个320X50广告单元看起来会更好而不是把它放在顶部吗?我还在页面底部有一个CommandBar。
<StackPanel>
<UI:AdControl
AutoRefreshIntervalInSeconds="60"
ApplicationId="be1500d6-9ca7-4a0b-a479-0db279d71e14"
AdUnitId="11191335"
HorizontalAlignment="Center"
IsAutoRefreshEnabled="True"
VerticalAlignment="Top"
Width="320"
Height="50" IsAutoCollapseEnabled="True"
/>
<Pivot x:Uid="Pivot" Title="XYZ" x:Name="pivot" CommonNavigationTransitionInfo.IsStaggerElement="True" SelectionChanged="pivot_SelectionChanged">
<!--Pivot item one-->
<PivotItem
x:Uid="PivotItem1"
Margin="19,14.5,0,0"
Header="calculate">
<ScrollViewer>
<!--<Content>-->
</ScrollViewer>
</PivotItem>
<PivotItem
x:Uid="PivotItem2"
Margin="19,14.5,0,0"
Header="saved">
<ScrollViewer>
<!--<Content>-->
</ScrollViewer>
</PivotItem>
</Pivot>
</StackPanel>