Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Transition.TransitionType Property

Gets or sets the type of animation effect applied by this Transition. This property accepts “…Transition” objects from the DevExpress.Utils.Animation namespace.

Namespace: DevExpress.Utils.Animation

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

public ITransitionAnimator TransitionType { get; set; }

#Property Value

Type Description
DevExpress.Utils.Animation.ITransitionAnimator

An object that specifies the animation effect applied by this Transition.

#Remarks

The sample below illustrates how to create a transition that applies the Zoom animation effect to its target control.

 DevExpress.Utils.Animation.Transition transition = new DevExpress.Utils.Animation.Transition();
 transition.Control = this;
 DevExpress.Utils.Animation.ZoomTransition zoomEffect = new DevExpress.Utils.Animation.ZoomTransition();
 transition.TransitionType = zoomEffect;
See Also