ContentPresenter.ContentTransitions プロパティ

定義

ContentPresenter によって表示されるコンテンツに適用される Transition スタイル要素のコレクションを取得または設定します。

public:
 property TransitionCollection ^ ContentTransitions { TransitionCollection ^ get(); void set(TransitionCollection ^ value); };
TransitionCollection ContentTransitions();

void ContentTransitions(TransitionCollection value);
public TransitionCollection ContentTransitions { get; set; }
var transitionCollection = contentPresenter.contentTransitions;
contentPresenter.contentTransitions = transitionCollection;
Public Property ContentTransitions As TransitionCollection
<contentPresenter>
  <contentPresenter.ContentTransitions>
    <TransitionCollection>
      oneOrMoreTransitions
    </TransitionCollection>
  </contentPresenter.ContentTransitions>
</contentPresenter>

プロパティ値

遷移スタイル要素の厳密に型指定されたコレクション。

注釈

重要

TransitionCollection 値を使用するすべてのプロパティの XAML 構文は、明示的な TransitionCollection オブジェクト要素を値として宣言し、使用する各遷移アニメーションに対して TransitionCollection の子要素としてオブジェクト要素を指定する必要がある点で通常とは異なります。 他のほとんどの XAML コレクション プロパティでは、コレクション オブジェクト要素は暗黙的に指定できますが、 TransitionCollection を 使用するプロパティでは暗黙的なコレクションの使用はサポートされていないため、省略できます。 暗黙的なコレクションと XAML の詳細については、「 XAML 構文ガイド」を参照してください。

切り替えアニメーションは、アプリの UI デザインで特定の役割を果たしています。 基本的な考え方は、変更または切り替えがある場合、アニメーションはユーザーの注意をその変更に引き付けるということです。

適用対象

こちらもご覧ください