namespace WPFluent.Animations;
///
/// Available types of transitions.
///
public enum Transition
{
///
/// None.
///
None,
///
/// Change opacity.
///
FadeIn,
///
/// Change opacity and slide from bottom.
///
FadeInWithSlide,
///
/// Slide from bottom.
///
SlideBottom,
///
/// Slide from the right side.
///
SlideRight,
///
/// Slide from the left side.
///
SlideLeft,
}