Windows Phone 8 如何将元素放在页面全景上方?

Windows Phone 8 How to put element above Page Panorama?

这是我的问题:

我正在开发一个有 Walkthrought 的应用程序,我使用了 Page Panorama,问题是我需要保持元素(按钮)完全静止,同时用户可以在 Panorama 中导航。

P.S.: 我是 Windows phone 的初学者,所以如果答案对其他人来说很明显,我很乐意提供线索

这实际上取决于您的布局,但使用网格可能是最佳解决方案:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="auto" />
        <RowDefinition />
    </Grid.RowDefinitions>

    <Button Grid.Row="0" Content="Hello world!" />

    <Panorama Grid.Row="1"></Panorama>
</Grid>