-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Summary
It would be helpful to have support for non-xaml objects, such as composition objects that control animations
Motivation
Supports cases for applying animations to xaml objects, such as transition animations in gridView
Basic Example
<Style x:Key="sampleStyle" TargetType="GridView">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="GridView">
<GridView>
<GridView.ItemContainerTransitions>
<TransitionCollection>
someAnimation
</TransitionCollection>
</GridView.ItemContainerTransitions>
<GridView.ItemsPanel>
<ItemsPanelTemplate>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
</GridView>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
Open Questions
No response
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request