Beispiel #1
0
 public static UIShiftAnimation[] ShiftAnimation(
     this IEnumerable <IUIObject> objs, UIShiftAnimationSettings settings)
 {
     return(objs.Select(uiObject => uiObject
                        .Animation <UIShiftAnimation>(settings))
            .ToArray());
 }
Beispiel #2
0
 public static UIShiftAnimation ShiftAnimation(this IUIObject obj,
                                               UIShiftAnimationSettings settings)
 {
     return(obj.Animation <UIShiftAnimation>(settings));
 }