如何在c#windows phone中加载全景项目时触发事件?

时间:2014-03-19 11:32:31

标签: c# visual-studio-2012 windows-phone-8

我是c#和Windows手机编程的新手,我正在开发一个应用程序,我想在每个全景项目中显示带有不同消息的消息框,我知道如何触发枢轴项目的事件但是我被这个全景卡住了项目事件。

要求:

最初全景项目应显示"一个"在消息框中,当滑动到第二个全景项目时,它应显示"两个"在消息框中。

1 个答案:

答案 0 :(得分:2)

假设您有4个全景项目:

 private void mainPanorama_SelectionChanged_1(object sender, SelectionChangedEventArgs e)
        {
            if (mainPanorama.SelectedIndex == 0)
            {
               //Put your message
            }
            else if (mainPanorama.SelectedIndex == 1)
            {
                //Put your message
            }
            else if (mainPanorama.SelectedIndex == 2)
            {
                //Put your message
            }
            else if (mainPanorama.SelectedIndex == 3)
            {
                //Put your message
            }

        }