MaterialDesignInXAML / MaterialDesignInXAML/MaterialDesignInXamlToolkit

Request for transition wipe that can shuffle slides in and out

Open
#322 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

enhancement transitions up-for-grabs
Dominant language
C#
Stars
16.3k
Forks
3.5k
Avg merge
1d 22h
Merged PRs (30d)
8

Description

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)
  {
  }
}

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by locating ITransitionWipe and existing transition-wipe implementations, then compare their constructors and slide movement behavior. Add the SlideDirection values and a ShuffleTransitionWipe accepting from-slide and to-slide directions; done means both slides can be moved in each requested direction.

Written by the indexing model from the issue text.

Assessment

Tech stack
csharp
Domain
desktop
Issue type
Feature
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.