0

MSDNMagazineの特別なWindow8エディション(http://msdn.microsoft.com/en-us/magazine//jj651572.aspx)で、LaurentはSimpleIocコンテナーの初期化について説明し、ViewModelsを使用してナビゲーションを実装する方法についても説明しています。をNavigationService実装しINavigationServiceます。

ただし、図6(彼はサービスの登録方法を示しています)では、彼のコードスニペットは、「ブレンド可能性」をサポートするためのものと思われる、という名前の設計時のNavigationServiceを明確に参照していますDesignNavigationService(LaurentはBlendのサポートに非常に優れています。そして私はそれを感謝します)。

設計時のナビゲーションサービスの違いを知っている人はいますか?この記事には他に言及されておらず、Bingを数回検索しても何も役に立ちませんでした。

4

1 に答える 1

0

Found the answer in the sample code that was published in conjunction with the article.

In the DesignNavigationService class, there's this explanatory comment:

// This class doesn't perform navigation, in order
// to avoid issues in the designer at design time.

Which, given that the ViewModel classes may be running a little bit at design time, makes sense, now that I think about it.

于 2013-01-24T07:07:26.987 に答える