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.Windows.FrameworkElement
target
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.Windows.FrameworkElement
target
The given element. |
System.TimeSpan
duration
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.Windows.FrameworkElement
target
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.Windows.FrameworkElement
target
The target element. |
System.TimeSpan
duration
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.Windows.FrameworkElement
target
The given element. |
System.Nullable<System.Double>
fromX
The starting x Translate transform value. |
System.Nullable<System.Double>
fromY
The starting y Translate transform value. |
System.Nullable<System.Double>
toX
The final x Translate transform value. |
System.Nullable<System.Double>
toY
The final y Translate transform value. |
System.TimeSpan
duration
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.Windows.FrameworkElement
target
The given element. |
System.Nullable<System.Double>
fromX
The starting x Translate transform value. |
System.Nullable<System.Double>
fromY
The starting y Translate transform value. |
System.Nullable<System.Double>
toX
The final x Translate transform value. |
System.Nullable<System.Double>
toY
The final y Translate transform value. |
System.TimeSpan
duration
How long should the transition take. |
System.Action
action
The action request to be executed later. |