在TopAppBar中包含adunit

时间:2015-02-02 16:34:01

标签: c# xaml windows-phone-8.1 winrt-xaml-toolkit

我想在页面的TopAppBar中添加一个adunit。

    <Page.TopAppBar>
        <AppBar IsOpen="True">
        <UI:AdControl 
          AutoRefreshIntervalInSeconds="60" 
          ApplicationId="be1500d6-9ca7-4a0b-a479-0db279d71e14" 
          AdUnitId="11191335" 
          HorizontalAlignment="Center" 
          IsAutoRefreshEnabled="True" 
          VerticalAlignment="Top" 
          Width="320"
          Height="50" IsAutoCollapseEnabled="True"
          />
        </AppBar>
    </Page.TopAppBar>

这编译并运行没有错误,但在将其添加到我的代码后,Frame.Navigate到此页面返回一个false值。 如何纠正它以使导航成功?如果这不是正确的方式,那么即使在滚动时,如何让我的广告始终保持在页面顶部。

1 个答案:

答案 0 :(得分:0)

Windows Phone不支持顶级AppBar。如果要在页面顶部显示添加内容,请将其放在页面顶部的一行网格中。将要滚​​动的页面内容放在其下方的第二行。类似的东西:

<Grid>
    <Grid.RowDefinitions>
         <RowDefinition Height="50"/>
         <RowDefinition Height="*" />
    </Grid.RowDefinitions>

    <UI:AdControl Grid.Row="0" />
    <GridView Grid.Row="1" /> <!-- or whatever else you want for the page content -->
</Grid>