Windows 8 應用一般涉及到兩種數據類型:應用數據與會話數據。在上一篇提到的本地數據存儲就是應用層面的數據,包括應用參數設置、用戶重要數據等。那麼會話層面的數據是基於用戶每次使用應用而造成,這些數據可能不須要留存在設備中。在整個應用生命週期中,應用啓動後便進入運行狀態。當用戶離開或系統進入待機狀態時,應用會進入掛起狀態,此時應用將被放入到內存中,待用戶從新使用時便會恢復成運行狀態。html
在這個過程當中用戶以前可能已經錄入了一些數據,而且但願在應用恢復時能夠繼續進行錄入。對於開發者來講,咱們須要在應用掛起時將一些會話數據進行保存,當應用恢復後同時將暫存數據復原,以便讓用戶繼續使用。須要注意的是MSDN中提到:「當用戶經過按 Alt+F4 或使用關閉手勢關閉應用時,應用將被掛起 10 秒鐘而後被終止。」也就意味着關閉的應用只有10秒鐘時間能夠被恢復。下面將經過實例進行演示,首先建立一個Textbox 讓用戶錄入名字進行會話操做。咱們首先來嘗試一下沒有進行掛起暫存處理的應用是何種結果。windows
<StackPanel Grid.Row="1" Margin="120,30,0,0"> <StackPanel Orientation="Horizontal" Margin="0,20,0,20"> <TextBlock Text="Name: " Style="{StaticResource BasicTextStyle}" Width="50"/> <TextBox x:Name="nameInput" Width="200"/> </StackPanel> </StackPanel>
直接按F5運行應用,在Name 欄中輸入名字或任意字符。在VS2012的Debug Location 工具欄能夠看到掛起(Suspend )的選項,咱們選擇掛起並終止(Suspend and shutdown),程序掛起後從系統左側菜單欄裏找到以前的應用從新啓用,恢復後的應用Name 欄中的文字已經丟失。對於名字這樣的簡單錄入還能夠接受,若是錄入項較多的話那將損失慘重。app
接下來咱們將進行應用掛起處理,打開App.xaml.cs 程序,在OnLaunched 方法中建立了rootFrame,當rootFrame 爲Null 時將從新建立Frame,在這個邏輯判斷中要使用SuspensionManager.RegisterFrame 方法進行rootFrame 註冊,這樣纔可使應用得到根Frame 信息並進行數據存儲。異步
if (rootFrame == null) { // Create a Frame to act as the navigation context and navigate to the first page rootFrame = new Frame(); SuspensionDemo.Common.SuspensionManager.RegisterFrame(rootFrame, "appFrame"); if (args.PreviousExecutionState == ApplicationExecutionState.Terminated) { //TODO: Load state from previously suspended application } // Place the frame in the current Window Window.Current.Content = rootFrame; }
在OnSuspending 方法中,使用SuspensionManager.SaveAsync 方法將掛起應用的當前狀態進行保存,這裏能夠調用異步操做來進行處理。async
private async void OnSuspending(object sender, SuspendingEventArgs e) { var deferral = e.SuspendingOperation.GetDeferral(); //TODO: Save application state and stop any background activity await SuspensionDemo.Common.SuspensionManager.SaveAsync(); deferral.Complete(); }
註冊完成後,打開MainPage.xaml.cs 在SaveState 方法中添加以下代碼,使應用掛起時能將Name 字段保存起來。ide
protected override void SaveState(Dictionary<String, Object> pageState) { pageState["name"] = nameInput.Text; }
掛起操做完成後,就要進行恢復操做,將暫存的數據恢復到應用中。再次打開App.xaml.cs 在PreviousExecutionState 判斷爲Terminated 時加入SuspensionManager.RestoreAsync 方法恢復之前的應用狀態。工具
protected async override void OnLaunched(LaunchActivatedEventArgs args) { Frame rootFrame = Window.Current.Content as Frame; // Do not repeat app initialization when the Window already has content, // just ensure that the window is active if (rootFrame == null) { // Create a Frame to act as the navigation context and navigate to the first rootFrame = new Frame(); SuspensionDemo.Common.SuspensionManager.RegisterFrame(rootFrame, "appFrame"); if (args.PreviousExecutionState == ApplicationExecutionState.Terminated) { //TODO: Load state from previously suspended application await SuspensionDemo.Common.SuspensionManager.RestoreAsync(); } // Place the frame in the current Window Window.Current.Content = rootFrame; } if (rootFrame.Content == null) { // When the navigation stack isn't restored navigate to the first page, // configuring the new page by passing required information as a navigation // parameter if (!rootFrame.Navigate(typeof(MainPage), args.Arguments)) { throw new Exception("Failed to create initial page"); } } // Ensure the current window is active Window.Current.Activate(); }
最後,在MainPage.xaml.cs 的LoadState 方法中將pageState的Name 字段內容恢復便可。咱們再次F5運行應用;錄入姓名;掛起並終止應用,應用恢復後能夠看到以前錄入的姓名仍然存在。ui
protected override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState) { if (pageState != null && pageState.ContainsKey("name")) { nameInput.Text = pageState["name"].ToString(); } }