C# Класс WinRTXamlToolkit.Controls.DataVisualization.Charting.DependencyPropertyAnimationHelper

Represents a control that can animate the transitions between its specified dependency property.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
BeginAnimation ( this target, DependencyProperty animatingDependencyProperty, string propertyPath, object targetValue, System.TimeSpan timeSpan, EasingFunctionBase easingFunction ) : void

Starts animating a dependency property of a framework element to a target value.

Приватные методы

Метод Описание
CreateStoryboard ( FrameworkElement target, DependencyProperty animatingDependencyProperty, string propertyPath, object &toValue, System.TimeSpan durationTimeSpan, EasingFunctionBase easingFunction ) : Storyboard
GetStoryboardKey ( string propertyPath ) : string

Returns a unique key for a storyboard.

Описание методов

BeginAnimation() публичный статический Метод

Starts animating a dependency property of a framework element to a target value.
public static BeginAnimation ( this target, DependencyProperty animatingDependencyProperty, string propertyPath, object targetValue, System.TimeSpan timeSpan, EasingFunctionBase easingFunction ) : void
target this The element to animate.
animatingDependencyProperty Windows.UI.Xaml.DependencyProperty The dependency property to /// animate.
propertyPath string The path of the dependency property to /// animate.
targetValue object The value to animate the dependency /// property to.
timeSpan System.TimeSpan The duration of the animation.
easingFunction Windows.UI.Xaml.Media.Animation.EasingFunctionBase The easing function to uses to /// transition the data points.
Результат void