New to Telerik UI for WinForms? Start a free 30-day trial
Animation Effects
Updated over 6 months ago
Three properties define the animation behavior of RadDropDownList:
-
DropDownAnimationEnabled: This property controls whether an animation will be enabled or not.
-
DropDownAnimationEasing: Specifies the precise animation effect that will be applied. You can choose from a number of predefined effects including linear, exponential, elastic, etc.
-
DropDownAnimationFrames: Property specifies the length of the animation. The higher the value of this property, the longer the animation will take.
Figure 1: Enable Animation

Animation Settings
C#
this.radDropDownList1.DropDownAnimationEnabled = true;
this.radDropDownList1.DropDownAnimationFrames = 50;
this.radDropDownList1.DropDownAnimationEasing = RadEasingType.OutSine;