/// <summary>
 /// Initialize a new instance of the SizePositionAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected BoundsEasingAnimate(MetaElementStatus target)
     : base(target)
 {
 }
예제 #2
0
 /// <summary>
 /// Initialize a new instance of the OpacityEasingAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected OpacityEasingAnimate(MetaElementStatus target)
     : base(target)
 {
 }
예제 #3
0
 /// <summary>
 /// Initialize a new instance of the MovePositionAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected EasingAnimate(MetaElementStatus target)
 {
     _target = target;
     _easing = new EasingCalculation(DEFAULT_EASING);
 }
 /// <summary>
 /// Initialize a new instance of the OpacityEasingAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected OpacityEasingAnimate(MetaElementStatus target)
     : base(target)
 {
 }
예제 #5
0
 /// <summary>
 /// Initialize a new instance of the MovePositionAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected EasingAnimate(MetaElementStatus target)
 {
     _target = target;
     _easing = new EasingCalculation(DEFAULT_EASING);
 }
예제 #6
0
 /// <summary>
 /// Initialize a new instance of the SizePositionAnimate class.
 /// </summary>
 /// <param name="target">State of elements to animate.</param>
 protected BoundsEasingAnimate(MetaElementStatus target)
     : base(target)
 {
 }