ItemsPresenter.FooterTransitions Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the collection of Transition style elements that apply to the footer of an ItemsPresenter.
public:
property TransitionCollection ^ FooterTransitions { TransitionCollection ^ get(); void set(TransitionCollection ^ value); };
TransitionCollection FooterTransitions();
void FooterTransitions(TransitionCollection value);
public TransitionCollection FooterTransitions { get; set; }
var transitionCollection = itemsPresenter.footerTransitions;
itemsPresenter.footerTransitions = transitionCollection;
Public Property FooterTransitions As TransitionCollection
<ItemsPresenter>
<ItemsPresenter.FooterTransitions>
<TransitionCollection>
oneOrMoreTransitions
</TransitionCollection>
</ItemsPresenter.FooterTransitions>
</ItemsPresenter>
Property Value
The collection of Transition style elements that apply to the footer of an ItemsPresenter.
Remarks
Note
Prior to Windows 10, version 1809 (SDK 17763), the XAML syntax for properties that have a TransitionCollection value requires that you 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. In Windows 10, version 1809 (SDK 17763) or later, TransitionCollection supports the implicit collection usage, so you can omit the collection object element. For more info on implicit collections and XAML, see XAML syntax guide.
Transition animations play a particular role in the 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.