Quantcast
Channel: かずきのBlog@hatena
Viewing all articles
Browse latest Browse all 1388

ReactivePropertyとPrism for WinRTとの連携

$
0
0

ちょっとしたTipsですが…。

Prism for WinRTとReactivePropertyを同時に使う場合以下の点に気を付けるといいです。

なるべくコンストラクタインジェクションを使う

ReactivePropertyは、コンストラクタで組み立てるのが一番スムーズなので出来るだけ外部からDIするものはプロパティでインジェクションするのではなくて、コンストラクタでインジェクションしましょう。そうすると、コンストラクタで準備万端状態になるので、ReactivePropertyの組み立てがスムーズに行えます。

どうしてもプロパティインジェクションしたいときなど

どうしてもプロパティでDIしたいときや、ナビゲーションのタイミングで初期化したいものなどがあるときも、以下の方法で、やるとコンストラクタでReactivePropertyの組み立てができます。

DIで使うプロパティもPropertyChangedイベントを発行する

こうしておくとObservePropertyを使って監視できるのでコンストラクタでさくっといけるようになります。

public Hoge()
{
  // DI対象のプロパティが全部設定が終わったら初期化する
  var initCompleted = Observable.Merge(
    this.ObserveProperty(o => o.DIProp1).Where(v => v != null),
    this.ObserveProperty(o => o.DIProp2).Where(v => v != null))
    .Skip(1) // もっといいやり方ありそう…
    .Subscribe(_ =>
    {
        // ここで初期化
    });
}

サスペンド対応

サスペンド時にReactivePropertyの値を保存したいときは、リストアしたくないReactivePropertyにIgnoreDataMember属性を付けたうえで、以下のようなプロパティをViewModelに定義しておくといい感じにしてくれます。

publicclass MainPageViewModel : ViewModel
{
    // リストア対象のReactivePropertypublic ReactiveProperty<string> Input { get; private set; }

    // リストア対象外のReactiveProperty
    [IgnoreDataMember]
    public ReactiveProperty<string> Output { get; private set; }

    // Prism for WinRTのリストアの仕組みに乗せるためのプロパティ
    [RestorableState]
    publicstring PackData
    {
        get { return SerializeHelper.PackReactivePropertyValue(this); }
        set { SerializeHelper.UnpackReactivePropertyValue(this, value); }
    }
}

Viewing all articles
Browse latest Browse all 1388

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>