MaterialDesignInXAML / MaterialDesignInXAML/MaterialDesignInXamlToolkit
Request for transition wipe that can shuffle slides in and out
Nobody has claimed this yet.
- 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
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- 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