Windows.UI.Xaml.Controls.ContentPresenter.ContentTransitions

June 22, 2022 ยท View on GitHub

-description

Gets or sets the collection of Transition style elements that apply to content presented by the ContentPresenter.

-xaml-syntax

<contentPresenter>
  <contentPresenter.ContentTransitions>
    <TransitionCollection>
      oneOrMoreTransitions
    </TransitionCollection>
  </contentPresenter.ContentTransitions>
</contentPresenter>

-xaml-values

oneOrMoreTransitions
oneOrMoreTransitionsOne or more object elements instantiating types that are derived from the Transition base type.
## -property-value The strongly typed collection of [Transition](../windows.ui.xaml.media.animation/transition.md) style elements.

-remarks

Important

The XAML syntax for all properties that use a TransitionCollection value is unusual in that you must declare an explicit TransitionCollection object element as the value, and then provide object elements as child elements of TransitionCollection for each of the transition animations you want to use. For most other XAML collection properties you could omit the collection object element because it can be implicit, but properties that use TransitionCollection don't support the implicit collection usage. For more info on implicit collections and XAML, see XAML syntax guide.

Transition animations play a particular role in UI design of your app. The basic idea is that when there is a change or transition, the animation draws the attention of the user to the change.

-examples

-see-also

TransitionCollection