C# 클래스 WinRTXamlToolkit.Controls.DataVisualization.Charting.DependencyPropertyAnimationHelper

Represents a control that can animate the transitions between its specified dependency property.
파일 보기 프로젝트 열기: xyzzer/WinRTXamlToolkit 1 사용 예제들

공개 메소드들

메소드 설명
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