CalendarAnimation
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
Slides the given element into view. This is an extension method.
public static void SlideIn(this FrameworkElement target, TimeSpan duration)
The given element.
durationTimeSpanHow long should the transition take.
Slides the given element into view. This is an extension method.
public static void SlideIn(this FrameworkElement target)
The target.
Slides the given element out of view. This is an extension method.
public static void SlideOut(this FrameworkElement target, TimeSpan duration)
The target element.
durationTimeSpanHow long should the transition take.
Slides the given element out of view. This is an extension method.
public static void SlideOut(this FrameworkElement target)
The target.
Translates the target element as requested by the parameters and executes the action request.
public static void Translate(this FrameworkElement target, double? fromX, double? fromY, double? toX, double? toY, TimeSpan duration, Action action)
The given element.
fromXdouble?The starting x Translate transform value.
fromYdouble?The starting y Translate transform value.
toXdouble?The final x Translate transform value.
toYdouble?The final y Translate transform value.
durationTimeSpanHow long should the transition take.
actionActionThe action request to be executed later.
Translates the target element as requested by the parameters.
public static void Translate(this FrameworkElement target, double? fromX, double? fromY, double? toX, double? toY, TimeSpan duration)
The given element.
fromXdouble?The starting x Translate transform value.
fromYdouble?The starting y Translate transform value.
toXdouble?The final x Translate transform value.
toYdouble?The final y Translate transform value.
durationTimeSpanHow long should the transition take.