如何在360度球体视图中获取全景图?

时间:2015-07-24 08:13:07

标签: c# xaml windows-phone-8

我正在开发一个应用程序,它捕获多个图像并在全景视图中显示它们。但我想在全景视图中以球形视图查看这些图像。我无法做到。请帮忙。

    <Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RenderTransform>
        <CompositeTransform Rotation="360"></CompositeTransform>
    </Grid.RenderTransform>
    <phone:Panorama>
        <phone:Panorama.RenderTransform>
            <CompositeTransform Rotation="360"></CompositeTransform>
        </phone:Panorama.RenderTransform>
        <phone:PanoramaItem>
            <Image Stretch="Fill" Source="/images/05.jpg"></Image>

        </phone:PanoramaItem>
        <phone:PanoramaItem>
            <Image Stretch="Fill" Source="/images/06.jpg"></Image>

        </phone:PanoramaItem>
        <phone:PanoramaItem>
            <Image Stretch="Fill" Source="/images/07.jpg"></Image>

        </phone:PanoramaItem>
        <phone:PivotItem>
            <Image Stretch="Fill" Source="/images/08.jpg"></Image>

        </phone:PivotItem>
    </phone:Panorama>
</Grid>

0 个答案:

没有答案