Pulse Constructor uno
Creates a new Pulse
Momentarily triggers a WhileTrue, WhileFalse or Timeline.
In this example, a pulse activated by pressing a Button
scales the button by 1.5 over 0.2 seconds, then scales it back to 1 over the same duration.
<Button Text="Pulse">
<WhileTrue ux:Name="pulseMe" Value="false">
<Scale Factor="1.5" Duration="0.2" />
</WhileTrue>
<Clicked>
<Pulse Target="pulseMe" />
</Clicked>
</Button>
Creates a new Pulse
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide