1
我正在開發windows phone 8應用程序。 我有兩頁;其中一頁是啓動頁面;一旦用戶打開應用程序,該頁面將在特定時間後自動出現;它會將用戶重定向到應用程序的主菜單。WP8中特定時間後的自動重定向
如何在WP8中的特定時間後自動重定向?
我正在開發windows phone 8應用程序。 我有兩頁;其中一頁是啓動頁面;一旦用戶打開應用程序,該頁面將在特定時間後自動出現;它會將用戶重定向到應用程序的主菜單。WP8中特定時間後的自動重定向
如何在WP8中的特定時間後自動重定向?
查看this answer的計時器實現。剩下的事情是,當定時器完成時,調用導航方法導航到主菜單。
可能是這行代碼可以幫助你:
public partial class MainPage : PhoneApplicationPage
{
private DispatcherTimer timer;
// Constructor
public MainPage()
{
InitializeComponent();
timer = new DispatcherTimer();
//Set your specific time here using TimeSpan instance
timer.Interval = TimeSpan.FromSeconds(2);
timer.Tick += (s, e) => {
var frame = App.Current.RootVisual as PhoneApplicationFrame;
frame.Navigate(new Uri("/Page1.xaml", UriKind.Relative));
};
timer.Start();
}
}
希望它能幫助。