Windows Phone開發之路(18) 隔離儲存區 (Isolated Storage)

來源:互聯網
上載者:User

  前面已經提到了,要想在程式多次運行間儲存資料就必須使用隔離儲存區 (Isolated Storage)。任何安裝在Windows Phone 7中的程式都可以訪問自身的永久磁碟儲存地區,這個地區稱為隔離儲存區 (Isolated Storage)。下面這個項目,將輕擊的總數作為臨時資料,也就是作為頁面狀態的一部分。將背景顏色作為應用程式設定被所有執行個體共用。

  MainPage.xaml XAML代碼:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>

<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<TextBlock Text="螢幕被單擊的次數為:"
Grid.Row="0"
Grid.Column="0"/>

<TextBlock Text=""
Name="txtNum"
Grid.Row="0"
Grid.Column="1"/>

</Grid>

  MainPage.xaml C#代碼:

namespace SilverlightIsolatedStorage
{
public partial class MainPage : PhoneApplicationPage
{
//聲明全域變數
Random rand = new Random();
int numTaps = 0;
PhoneApplicationService appService = PhoneApplicationService.Current;//擷取當前應用程式的PhoneApplicationService對象,用於儲存臨時資料

//建構函式
public MainPage()
{
InitializeComponent();

UpdatenumTaps(numTaps);//初始化單擊螢幕次數
Brush brush = (Application.Current as App).BackgroundBrush;//為使用隔離儲存區 (Isolated Storage)設定訪問App類

if (brush != null)
{
this.ContentPanel.Background = brush;//從App類中擷取BackgroundBrush屬性
}
}

protected void UpdatenumTaps(int num)//定義更新單擊次數的方法
{
txtNum.Text = string.Format("{0}次",num);
}

protected override void OnManipulationStarted(ManipulationStartedEventArgs e)//重寫基類Control(MainPage從它繼承)的虛方法(當ManipulationStarted事件發生時調用)
{
//todo:單擊螢幕時使背景顏色隨機改變並將顏色儲存到App類的公用屬性中,然後調用UpdatenumTaps()方法使單擊次數更新
SolidColorBrush brush = new SolidColorBrush(Color.FromArgb(255,(byte)rand.Next(256),(byte)rand.Next(256),(byte)rand.Next(256)));

this.ContentPanel.Background = brush;

(Application.Current as App).BackgroundBrush = brush;//為使用隔離儲存區 (Isolated Storage),儲存資料到App類

UpdatenumTaps(++numTaps);//調用方法

e.Complete();
base.OnManipulationStarted(e);//調用基類虛方法
}

//雖然程式的墓碑化恢複操作的大部分任務留給了程式自身來處理,但是通過重寫OnNavigatedFrom和OnNavigatedFrom方法可以保證程式重新啟用並載入正確的頁面
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)//重寫基類Page的虛方法(當頁面離開時調用)
{
//todo:儲存臨時資料到PhoneApplicationService的State字典中
appService.State["numTaps"] = numTaps;

base.OnNavigatedFrom(e);
}

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)//重寫基類Page的虛方法(當頁面成為架構的活動頁面時調用)
{
//todo:載入numTaps
if (appService.State.ContainsKey("numTaps"))//判斷是否包含該鍵
{
numTaps = (int)appService.State["numTaps"];
UpdatenumTaps(numTaps);
}

base.OnNavigatedTo(e);
}
}
}

  效果

     
           程式退出之前              程式退出後重新啟動

  總結:1,如果是儲存臨時資料(一次執行循環之間的資料)最好使用PhoneApplicationService類儲存;如果是儲存應用程式設定(多次執行循環之間儲存資料)最好使用隔離儲存區 (Isolated Storage)IsolatedStorageSettings類儲存。
     2,還有一個非常容易讓人迷惑的問題?在沒有重寫OnNavigatedFrom和OnNavigatedTo方法的情況下,程式仍然能在墓碑化恢複的時候正確地顯示上次單擊螢幕的次數,這是因為在Windows Phone 7中,程式的墓碑化恢複操作的大部分任務都交給了程式自身來處理。但是最好是重寫這兩個方法,因為這樣可以保證程式重新啟用時能載入正確的頁面。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.