MaterialDesignInXamlToolkit icon indicating copy to clipboard operation
MaterialDesignInXamlToolkit copied to clipboard

Request for transition wipe that can shuffle slides in and out

Open mgnslndh opened this issue 9 years ago • 0 comments

The transition wipe should be able to shuffle slides in various directions such as:

enum SlideDirection
{
  Up,
  Down,
  Left,
  Right,
  UpLeft,
  UpRight,
  DownLeft,
  DownRight
}

The wipe would take two SlideDirection parameters in the constructor. The first decides where to slide the fromSlide and the second where to slide the toSlide

public ShuffleTransitionWipe : ITransitionWipe
{
  public ShuffleTransitionWipe(SlideDirection fromSlideDirection, SlideDirection toSlideDirection)
  {
  }
}

mgnslndh avatar Mar 31 '16 15:03 mgnslndh