Windows Phone – 使用Sterling資料庫實現墓碑化(Tombstone)[zhuan]

來源:互聯網
上載者:User

如果你的WP應用已經使用了Sterling資料庫,那就順便用Sterling實現墓碑化(Tombtsone)吧。Jeremy Likness的blog詳細說明了如何在MVVM架構中使用Sterling實現Tombstone。主要有幾點:

 

1. 定義一個Tombstone資料類。其中用到了Sterling User Guide中提到的Singletone Serialization

 

public class TombstoneModel{    public TombstoneModel()    {        State = new Dictionary<string, object>();    }    public Dictionary<string, object> State { get; set; }    public T TryGet<T>(string key, T defaultValue)    {        if (State.ContainsKey(key))        {            return (T)State[key];        }        return defaultValue;    }}

 

 

2. 定義一個ITombstoneable介面。其中有Active與Deactive方法,分別於view的NavigatedTo方法,NavigatedFrom方法中調用。

在Deactive方法中儲存Tombstone資料類到資料庫,在Active方法中取出Tombstone資料, 用於恢複view model的狀態。

 

3. 在需要Tombstone的view model上實現該介面

 

很多情況下,View Model需要View Loaded之後才可工作,Jeremy使用了一個匿名事件處理在Loaded之後執行Active方法。

 

public static void ActivatePage(this PhoneApplicationPage phonePage, IViewModel viewModel){    RoutedEventHandler loaded = null;    loaded = (o, e) =>                    {                                                     ((PhoneApplicationPage) o).Loaded -= loaded;                        if (viewModel is ITombstoneFriendly)                        {                            ((ITombstoneFriendly) viewModel).Activate();                        }                    };    phonePage.Loaded += loaded;}protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e){    this.ActivatePage(GlobalManager.GetViewModel<IMainViewModel>());    base.OnNavigatedTo(e);}

此外,Sterling目前還不支援IList的序列化,Active之後會發現該集合的項目均為null,討論群組中提到了這個問題,可用List代替而解決。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.