Beispiel #1
0
 public static UIRotateAnimation RotateAnimation(this IUIObject obj,
                                                 UIRotateAnimationSettings settings)
 {
     return(obj.Animation <UIRotateAnimation>(settings));
 }
Beispiel #2
0
 // RotateAnimation
 public static IEnumerable <UIRotateAnimation> RotateAnimation(
     this IEnumerable <IUIObject> objs, UIRotateAnimationSettings settings)
 {
     return(objs.Select(uiObject => uiObject.Animation <UIRotateAnimation>(settings)).ToArray());
 }