ContentControl.ContentTransitions プロパティ

定義

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

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

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

プロパティ値

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

注釈

注意

Windows 10 Version 1809 (SDK 17763) より前のバージョンでは、TransitionCollection 値を持つプロパティの XAML 構文では、明示的な TransitionCollection オブジェクト要素を値として宣言し、使用する各遷移アニメーションの TransitionCollection の子要素としてオブジェクト要素を指定する必要があります。 Windows 10 Version 1809 (SDK 17763) 以降では、TransitionCollection は暗黙的なコレクションの使用をサポートしているため、コレクション オブジェクト要素を省略できます。 暗黙的なコレクションと XAML の詳細については、「 XAML 構文ガイド」を参照してください。

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

ContentTransitions プロパティの値を、アプリ UI の直接要素である ContentControl型に直接設定することは一般的ではありません。 画面切り替えコレクションを視覚的な状態、テンプレート、またはスタイルの一部にする方が一般的です。 この場合、スタイルSetterなどのメカニズムを使用して ContentTransitions プロパティを指定します。 スタイルは通常、XAML リソースとして格納されます。

適用対象