MVVM and Animations in Silverlight

I wanted to spin an icon to show progress to my user while some content was downloading. I'm using MVVM (aren't you) and made a satisfactory Storyboard to spin the icon. However, it took longer than expected to trigger that animation from my ViewModel's property.

I used a combination of the GoToState action and the DataTrigger from the Microsoft.Expression.Interactions dll as described.

Then I had problems getting it to start until I found this approach that saved the day. The DataTrigger didn't bind right away because "it doesn’t change visual state on load is because the StateTarget property of the GotoStateAction is null at the time the DataTrigger fires."

Here's my XAML, hopefully you can fill in the rest.

<Image x:Name="StatusIcon" AutomationProperties.AutomationId="StatusIcon" Width="16" Height="16" Stretch="Fill"

Source="inProgress.png" ToolTipService.ToolTip="{Binding StatusTooltip}">

<i:Interaction.Triggers>

<utilitiesBehaviors:DataTriggerWhichFiresOnLoad Value="True" Binding="{Binding IsDownloading, Mode=OneWay, TargetNullValue=True}">

<ei:GoToStateAction StateName="Downloading" />

</utilitiesBehaviors:DataTriggerWhichFiresOnLoad>

<utilitiesBehaviors:DataTriggerWhichFiresOnLoad Value="False" Binding="{Binding IsDownloading, Mode=OneWay, TargetNullValue=True}">

<ei:GoToStateAction StateName="Complete"/>

</utilitiesBehaviors:DataTriggerWhichFiresOnLoad>

</i:Interaction.Triggers>

<Image.Projection>

</Image.Projection>

<VisualStateManager.VisualStateGroups>

<VisualStateGroup.Transitions>

<VisualTransition.GeneratedEasingFunction>

</VisualTransition.GeneratedEasingFunction>

</VisualStateGroup.Transitions>

</VisualStateManager.VisualStateGroups>

MVVMAnimations.zip

This article is part of the GWB Archives. Original Author: Aligned

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.