Transitioner question about disabling transitions #3120
-
I just started playing with the Transitioner control in this toolkit. I tried implementing techniques explained in the wiki but didn't get anywhere. Any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@jbooth88 I have not played around with the I agree that
However, I think you should be able to accomplish what you want by levering the <materialDesign:TransitionerSlide>
<materialDesign:TransitionerSlide.BackwardWipe>
<materialDesign:SlideWipe Duration="0" />
</materialDesign:TransitionerSlide.BackwardWipe>
<materialDesign:TransitionerSlide.ForwardWipe>
<materialDesign:SlideWipe Duration="0" />
</materialDesign:TransitionerSlide.ForwardWipe>
<!-- slide content goes here -->
</materialDesign:TransitionerSlide> The key thing to note here is that a transition from slide A to slide B is not necessarily the same transition used in the transition from slide B to slide A. Each slide defines a transition moving forward or backwards it seems; so to disable the transitions, you will need to disable both forward and backward for all slides. At least that is my take on it. Again, I don't really have a lot of knowledge of this control, so I was just playing around with it. |
Beta Was this translation helpful? Give feedback.
@jbooth88 I have not played around with the
Transitioner
a whole lot, but I just spent 10 minutes playing with it in the demo tool.I agree that
TransitionAssist.DisableTransitions="True"
seems to have no effect whatsoever. Surprised me a bit, but to be fair, the documentation hints that it won't work in all places; perhaps theTransitioner
itself is one of the places it does not:However, I think you should be able to accomplish what you want by levering the
TransistionerSlide.ForwardWipe
andTransistionerSlide.BackwardWipe
. If you try setting all of them on all your slides to aSlideWipe
with zero duration I think you get closer to wh…