Animation in DataGrid of Silverlight Application - How? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:08:27Zhttp://stackoverflow.com/feeds/question/700798http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/700798/animation-in-datagrid-of-silverlight-application-how2Animation in DataGrid of Silverlight Application - How?DilbertDave2009-03-31T12:55:12Z2009-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><data:DataGrid.Columns>
.
.
.
.
<data:DataGridTemplateColumn>
<data:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel x:Name="AnimationPanel">
<StackPanel.Resources>
<Storyboard x:Key="ShowProgress">
<DoubleAnimation Storyboard.TargetProperty="Width"
Storyboard.TargetName="goalProgressBar_Complete"
From="0" To="50"
Duration="0:0:5">
</DoubleAnimation>
</Storyboard>
</StackPanel.Resources>
<Rectangle x:Name="goalProgressBar_Complete"
Width="1" Height="100"
Fill="#0aa60e"></Rectangle>
</StackPanel>
</DataTemplate>
</data:DataGridTemplateColumn.CellTemplate>
</data:DataGridTemplateColumn>
</data:DataGrid.Columns>
</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><data:DataGridTemplateColumn>
<data:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<Rectangle x:Name="GoalProgress" Height="100" Width="1" Fill="Green">
<Rectangle.Triggers>
<EventTrigger RoutedEvent="Rectangle.Loaded">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="Width"
Storyboard.TargetName="GoalProgress"
From="0" To="50" Duration="0:0:5">
</DoubleAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Rectangle.Triggers>
</Rectangle>
</DataTemplate>
</data:DataGridTemplateColumn.CellTemplate>
</data:DataGridTemplateColumn>
</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#7008250Answer by MasterMax1313 for Animation in DataGrid of Silverlight Application - How?MasterMax13132009-03-31T12:59:46Z2009-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#7008641Answer by Jeff Yates for Animation in DataGrid of Silverlight Application - How?Jeff Yates2009-03-31T13:10:59Z2009-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#7021511Answer by MasterMax1313 for Animation in DataGrid of Silverlight Application - How?MasterMax13132009-03-31T17:29:43Z2009-03-31T17:29:43Z<p>Try attaching it to the EventTrigger for the Datagrid. Something similar to this: </p>
<pre><code><Window.Triggers>
<EventTrigger RoutedEvent="Window.Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Name="EntranceAnimation"
Storyboard.TargetName="MainWindow"
Storyboard.TargetProperty="Opacity"
From="0.0"
To="1.0"
Duration="0:0:3">
</DoubleAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Window.Triggers>
</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>