恢復狀態處理
使用者可以從暫停狀態開啟你的應用程式。在執行它時,使用 OnResuming
事件處理程式。在“App.xaml.cs”類中:
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
//Handle resuming operation:
this.Resuming += App_Resuming;
}
private void App_Resuming(object sender, object e)
{
//Do some operation connected with app resuming for instance refresh data
}