Ejemplo n.º 1
0
 /// <summary>
 /// Animates the movement of a list of views in a vertical direction.
 /// </summary>
 /// <param name="duration">The duration for the animation.</param>
 /// <param name="translateY">The amount to translate.</param>
 /// <param name="views">One or more views to move vertically.</param>
 public static void AnimateMoveVertical(double duration, nfloat translateY, params UIView[] views)
 {
     ViewAnimation.AnimateMoveVertical(duration, translateY, (IEnumerable <UIView>)views);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Animates the movement of a list of views in a vertical direction.
 /// </summary>
 /// <param name="duration">The duration for the animation.</param>
 /// <param name="translateY">The amount to translate.</param>
 /// <param name="views">One or more views to move vertically.</param>
 public static void AnimateMoveVertical(double duration, nfloat translateY, IEnumerable <UIView> views)
 {
     ViewAnimation.AnimateMoveVertical(duration, translateY, () => { }, views);
 }