2

使用 WP7 SDK 可以使用 BlocksPan 来防止 Panorama 控件滑动,例如,如果您在其上使用水平 Slider 控件。这不再适用于 WP8 sdk。微软在指南中说:只是不要在全景图上使用滑块。但是我们的应用程序(以前为 wp7 设计)确实需要它。

有没有其他方法可以防止全景滑动?如果我们不顾指导方针去做,我们的应用程序会不会通过商店验证?

请帮忙 ;)

最好的问候,克里斯

4

1 回答 1

0

其实很简单你应该订阅ManipulationStarted全景控件的事件

    m_Panorama.ManipulationStarted += m_Panorama_ManipulationStarted;


    void m_Panorama_ManipulationStarted(object sender, System.Windows.Input.ManipulationStartedEventArgs e)
    {
        m_Panorama.IsHitTestVisible = false;           
    }

也许你需要一个布尔变量

于 2013-02-27T13:49:38.613 回答