Class CalendarAnimation
Class that governs the transition animations in the calendar.
Inheritance
Namespace: Telerik.Windows.Controls.Calendar
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public static class CalendarAnimation : Object
Methods
SlideIn(FrameworkElement)
Slides the given element into view. This is an extension method.
Declaration
public static void SlideIn(this FrameworkElement target)
Parameters
System. The target. |
SlideIn(FrameworkElement, TimeSpan)
Slides the given element into view. This is an extension method.
Declaration
public static void SlideIn(this FrameworkElement target, TimeSpan duration)
Parameters
System. The given element. |
System. How long should the transition take. |
SlideOut(FrameworkElement)
Slides the given element out of view. This is an extension method.
Declaration
public static void SlideOut(this FrameworkElement target)
Parameters
System. The target. |
SlideOut(FrameworkElement, TimeSpan)
Slides the given element out of view. This is an extension method.
Declaration
public static void SlideOut(this FrameworkElement target, TimeSpan duration)
Parameters
System. The target element. |
System. How long should the transition take. |
Translate(FrameworkElement, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, TimeSpan)
Translates the target element as requested by the parameters.
Declaration
public static void Translate(this FrameworkElement target, Nullable<double> fromX, Nullable<double> fromY, Nullable<double> toX, Nullable<double> toY, TimeSpan duration)
Parameters
System. The given element. |
System. The starting x Translate transform value. |
System. The starting y Translate transform value. |
System. The final x Translate transform value. |
System. The final y Translate transform value. |
System. How long should the transition take. |
Translate(FrameworkElement, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, TimeSpan, Action)
Translates the target element as requested by the parameters and executes the action request.
Declaration
public static void Translate(this FrameworkElement target, Nullable<double> fromX, Nullable<double> fromY, Nullable<double> toX, Nullable<double> toY, TimeSpan duration, Action action)
Parameters
System. The given element. |
System. The starting x Translate transform value. |
System. The starting y Translate transform value. |
System. The final x Translate transform value. |
System. The final y Translate transform value. |
System. How long should the transition take. |
System. The action request to be executed later. |