Animation in DataGrid of Silverlight Application - How? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:08:27Z http://stackoverflow.com/feeds/question/700798 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/700798/animation-in-datagrid-of-silverlight-application-how 2 Animation in DataGrid of Silverlight Application - How? DilbertDave 2009-03-31T12:55:12Z 2009-04-01T11:18:41Z <p>I'm starting to kick Silverlight around (although it currently feels the other way around) by rewritting an existing ASP.NET application - as good a place to start as any I thought.</p> <p>I have 'mastered' pulling data from a database, through a service and into a datagrid and also populating image elements in the rows. So far so good.</p> <p>Now i'm stuck and have a headache!</p> <p>I want to add a simple animation (a green rectangle moving over a red rectangle to display a % progress) to the last column of each row, but can't get it wired up.</p> <p>My xaml looks like this:</p> <pre><code>&lt;data:DataGrid.Columns&gt; . . . . &lt;data:DataGridTemplateColumn&gt; &lt;data:DataGridTemplateColumn.CellTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel x:Name="AnimationPanel"&gt; &lt;StackPanel.Resources&gt; &lt;Storyboard x:Key="ShowProgress"&gt; &lt;DoubleAnimation Storyboard.TargetProperty="Width" Storyboard.TargetName="goalProgressBar_Complete" From="0" To="50" Duration="0:0:5"&gt; &lt;/DoubleAnimation&gt; &lt;/Storyboard&gt; &lt;/StackPanel.Resources&gt; &lt;Rectangle x:Name="goalProgressBar_Complete" Width="1" Height="100" Fill="#0aa60e"&gt;&lt;/Rectangle&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/data:DataGridTemplateColumn.CellTemplate&gt; &lt;/data:DataGridTemplateColumn&gt; &lt;/data:DataGrid.Columns&gt; </code></pre> <p>which is quite obviously wrong (because it doesn't work) and I am starting to think that it just is not possible to add animation to a Datagrid in this way. I've Googled hard looking for a piece of code and while there have been some tantilising results they have not amounted to anything.</p> <p>Am I trying to do something that Silverlight simply does not support or am I missing something really straightforward?</p> <p>Thanks in advance.</p> <p>Edit: Full xaml @ <a href="http://daves.stackoverflow.s3.amazonaws.com/stackoverflow.txt" rel="nofollow">http://daves.stackoverflow.s3.amazonaws.com/stackoverflow.txt</a></p> <p><strong>Update:</strong> Although I'm not out of the woods yet I have managed to get the animation running with the appropriate column. The answer provided by MasterMax led me to look at EventTriggers and the revised xaml looks like this:</p> <pre><code>&lt;data:DataGridTemplateColumn&gt; &lt;data:DataGridTemplateColumn.CellTemplate&gt; &lt;DataTemplate&gt; &lt;Rectangle x:Name="GoalProgress" Height="100" Width="1" Fill="Green"&gt; &lt;Rectangle.Triggers&gt; &lt;EventTrigger RoutedEvent="Rectangle.Loaded"&gt; &lt;EventTrigger.Actions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Storyboard.TargetProperty="Width" Storyboard.TargetName="GoalProgress" From="0" To="50" Duration="0:0:5"&gt; &lt;/DoubleAnimation&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger.Actions&gt; &lt;/EventTrigger&gt; &lt;/Rectangle.Triggers&gt; &lt;/Rectangle&gt; &lt;/DataTemplate&gt; &lt;/data:DataGridTemplateColumn.CellTemplate&gt; &lt;/data:DataGridTemplateColumn&gt; </code></pre> <p>All I need to do now is bind in the % value in the 'To' property and add my underlying Red rectangle. No doubt this will not prove as easy as I'm currently hoping but then it wouldn't be fun otherwise would it ;-)</p> http://stackoverflow.com/questions/700798/animation-in-datagrid-of-silverlight-application-how/700825#700825 0 Answer by MasterMax1313 for Animation in DataGrid of Silverlight Application - How? MasterMax1313 2009-03-31T12:59:46Z 2009-03-31T12:59:46Z <p>for that type of application, an animation may not be the best solution. you may want to try binding the width property of the moving rectangle to a variable in your application, or adjust the width with each tick as the progress changes.</p> http://stackoverflow.com/questions/700798/animation-in-datagrid-of-silverlight-application-how/700864#700864 1 Answer by Jeff Yates for Animation in DataGrid of Silverlight Application - How? Jeff Yates 2009-03-31T13:10:59Z 2009-04-01T03:59:16Z <p>It looks to me like you aren't actually playing the storyboard. You need to add mouse enter and mouse leave handlers for your rectangle and then play and stop your storyboard accordingly. Make sure to both stop and then play the storyboard in the enter command (otherwise you get some interesting side-effects).</p> <h3>Update</h3> <p>Okay, having spent my day neck deep in Silverlight, I'm not much closer to helping. I was looking at the generic.xaml file inside the Silverlight assembly containing the DataGrid. You might consider taking a look in there. From what I can see, they achieve some of this for the row details transition with control templating though I haven't looked at the corresponding code yet to determine exactly how.</p> http://stackoverflow.com/questions/700798/animation-in-datagrid-of-silverlight-application-how/702151#702151 1 Answer by MasterMax1313 for Animation in DataGrid of Silverlight Application - How? MasterMax1313 2009-03-31T17:29:43Z 2009-03-31T17:29:43Z <p>Try attaching it to the EventTrigger for the Datagrid. Something similar to this: </p> <pre><code>&lt;Window.Triggers&gt; &lt;EventTrigger RoutedEvent="Window.Loaded"&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Name="EntranceAnimation" Storyboard.TargetName="MainWindow" Storyboard.TargetProperty="Opacity" From="0.0" To="1.0" Duration="0:0:3"&gt; &lt;/DoubleAnimation&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger&gt; &lt;/Window.Triggers&gt; </code></pre> <p>In your case you'd be looking for the DataGrid.Loaded event (or something similar). This works for me, and I'm fading the whole window in on page loaded.</p>