MaterialDesignInXamlToolkit
MaterialDesignInXamlToolkit copied to clipboard
Request for transition wipe that can shuffle slides in and out
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)
{
}
}