C# Class Lousy.Mon.Oli

Fluent animation factory for UIElements
Mostra file Open project: ThatLousyGuy/Monolith

Public Methods

Method Description
Animate ( UIElement elem ) : PropertyAnimator

Animates an arbitrary property of a UIElement.

AnimateHeightOf ( UIElement elem ) : HeightAnimator

Changes the height of a UIElement.

AnimateWidthOf ( UIElement elem ) : WidthAnimator

Changes the width of a UIElement.

Fade ( UIElement elem ) : FadeAnimator

Changes the opacity of a UIElement.

MoveXOf ( UIElement elem ) : MoveXAnimator

Moves a UIElement along the X axis.

MoveYOf ( UIElement elem ) : MoveYAnimator

Moves a UIElement along the Y axis.

Rotate ( UIElement elem ) : RotateAnimator

Rotates a UIElement.

Run ( CodeDelegate del ) : CodeAnimator

Runs arbitrary code. Use this method to run code after an animation completes.

ScaleXOf ( UIElement elem ) : ScaleXAnimator

Scales a UIElement along the X axis.

ScaleYOf ( UIElement elem ) : ScaleYAnimator

Scales a UIElement along the Y axis.

Method Details

Animate() public static method

Animates an arbitrary property of a UIElement.
public static Animate ( UIElement elem ) : PropertyAnimator
elem Windows.UI.Xaml.UIElement
return PropertyAnimator

AnimateHeightOf() public static method

Changes the height of a UIElement.
public static AnimateHeightOf ( UIElement elem ) : HeightAnimator
elem Windows.UI.Xaml.UIElement
return HeightAnimator

AnimateWidthOf() public static method

Changes the width of a UIElement.
public static AnimateWidthOf ( UIElement elem ) : WidthAnimator
elem Windows.UI.Xaml.UIElement
return WidthAnimator

Fade() public static method

Changes the opacity of a UIElement.
public static Fade ( UIElement elem ) : FadeAnimator
elem Windows.UI.Xaml.UIElement
return FadeAnimator

MoveXOf() public static method

Moves a UIElement along the X axis.
public static MoveXOf ( UIElement elem ) : MoveXAnimator
elem Windows.UI.Xaml.UIElement
return MoveXAnimator

MoveYOf() public static method

Moves a UIElement along the Y axis.
public static MoveYOf ( UIElement elem ) : MoveYAnimator
elem Windows.UI.Xaml.UIElement
return MoveYAnimator

Rotate() public static method

Rotates a UIElement.
public static Rotate ( UIElement elem ) : RotateAnimator
elem Windows.UI.Xaml.UIElement
return RotateAnimator

Run() public static method

Runs arbitrary code. Use this method to run code after an animation completes.
public static Run ( CodeDelegate del ) : CodeAnimator
del CodeDelegate
return CodeAnimator

ScaleXOf() public static method

Scales a UIElement along the X axis.
public static ScaleXOf ( UIElement elem ) : ScaleXAnimator
elem Windows.UI.Xaml.UIElement
return ScaleXAnimator

ScaleYOf() public static method

Scales a UIElement along the Y axis.
public static ScaleYOf ( UIElement elem ) : ScaleYAnimator
elem Windows.UI.Xaml.UIElement
return ScaleYAnimator