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