5秒后自动重定向到另一个xaml页面

时间:2016-04-21 09:19:46

标签: c# xaml windows-phone-8.1

我正在开发Windows Phone 8.1应用。我想知道如何在5秒后重定向到另一个xaml页面。 我想执行以下操作: 当我点击一个注销按钮时,它应该导航到另一个页面(我可以很容易地做到这一点),但我想要的是该页面不应该显示超过5秒,它应该在5秒后导航到其他特定页面

2 个答案:

答案 0 :(得分:2)

Double

答案 1 :(得分:1)

 DispatcherTimer timer;
        private void button_Click(object sender, RoutedEventArgs e)
        {
            if (timer == null)
            {
                timer = new DispatcherTimer() { Interval = TimeSpan.FromSeconds(5) };
                timer.Tick += Timer_Tick;
                timer.Start();
            }
        }
 private void Timer_Tick(object sender, object e)
        {
            timer.Stop();
            Frame.Navigate(typeof(MainPage));//Give your page here
        }