Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can use System.Windows.Interaction.Interactivity with condition to launch storyboards.</p> <p>xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions"</p> <pre><code>&lt;Border x:Name="brd" MinWidth="20" Height="20"&gt; &lt;TextBlock Text="{Binding Text}" HorizontalAlignment="Center" VerticalAlignment="Center"/&gt; &lt;Border.Resources&gt; &lt;Storyboard x:Key="Story" Duration="1000" Storyboard.TargetName="brd" Storyboard.TargetProperty="Background"&gt; &lt;ObjectAnimationUsingKeyFrames&gt; &lt;DiscreteObjectKeyFrame KeyTime="0:0:0.0" Value="#81bb8c" /&gt; &lt;DiscreteObjectKeyFrame KeyTime="0:0:0.9" Value="{x:Null}" /&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="Story2" Duration="1000" Storyboard.TargetName="brd" Storyboard.TargetProperty="Background"&gt; &lt;ObjectAnimationUsingKeyFrames&gt; &lt;DiscreteObjectKeyFrame KeyTime="0:0:0.0" Value="#bb818c" /&gt; &lt;DiscreteObjectKeyFrame KeyTime="0:0:0.9" Value="{x:Null}" /&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/Border.Resources&gt; &lt;i:Interaction.Triggers&gt; &lt;ei:DataTrigger Binding="{Binding LastClick}" Value="0" Comparison="GreaterThan"&gt; &lt;ei:ControlStoryboardAction Storyboard="{StaticResource Story}" ControlStoryboardOption="Play" /&gt; &lt;/ei:DataTrigger&gt; &lt;ei:DataTrigger Binding="{Binding LastClick}" Value="0" Comparison="LessThan"&gt; &lt;ei:ControlStoryboardAction Storyboard="{StaticResource Story2}" ControlStoryboardOption="Play" /&gt; &lt;/ei:DataTrigger&gt; &lt;/i:Interaction.Triggers&gt;&lt;/Border&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload