Target : StateGroup ux
StateGroup to be be transitioned *
An action that controls state of a StateGroup.
The following example displays a red panel that will turn its color in green when clicked.
<Panel ux:Name="thePanel" Width="100" Height="100">
<StateGroup ux:Name="stateGroup">
<State ux:Name="redState">
<Change thePanel.Color="#f00" Duration="0.2"/>
</State>
<State ux:Name="greenState">
<Change thePanel.Color="#0f0" Duration="0.2"/>
</State>
</StateGroup>
<Clicked>
<TransitionState Value="greenState" Target="stateGroup" />
</Clicked>
</Panel>
StateGroup to be be transitioned *
Creates a new TransitionState
Explicit target state to transition to *
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide