In WPF, has anybody animated a Grid? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:07:44Zhttp://stackoverflow.com/feeds/question/197855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid3In WPF, has anybody animated a Grid? Scott2008-10-13T14:55:42Z2008-10-16T13:56:25Z
<p>I have 2 columns in a Grid. When I click a button, I want the first column to animate to the left from it's current position to 0. So, in effect, it collapses and I'm left with just viewing a single column.</p>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/197935#1979354Answer by Will for In WPF, has anybody animated a Grid? Will2008-10-13T15:13:27Z2008-10-13T15:23:45Z<p>Shouldn't be too hard. You'd need to create an EventTrigger that has a BeginStoryboard that targets the grid and uses a DoubleAnimation to shrink the column width. <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.animation.doubleanimation.aspx" rel="nofollow">The example here has a similar setup.</a> The EventTrigger would go on the button and the DoubleAnimation's <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.animation.storyboard.target.aspx" rel="nofollow">StoryBoard.Target</a> would point to the ColumnDefinition you wish to shrink. </p>
<p>Okay, so that doesn't work so well. You can't shrink the column directly, but you CAN set the shrinking column to fill (width="*"), set the width of the Grid and the non-shrinking column, and then shrink the entire grid. This does work. The below example works:</p>
<pre><code><Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
WindowTitle="Opacity Animation Example" Background="White">
<StackPanel Margin="20">
<Grid Name="MyGrid" Width="200" HorizontalAlignment="Left">
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="100"/>
</Grid.ColumnDefinitions>
<Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="0" Fill="Red"/>
<Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="1" Fill="Blue"/>
</Grid>
<Button Name="hideButton">
Hide
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="MyGrid"
Storyboard.TargetProperty="(Grid.Width)"
From="200" To="100" Duration="0:0:2" AutoReverse="True" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
</StackPanel>
</Page>
</code></pre>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/198278#1982781Answer by Nidonocu for In WPF, has anybody animated a Grid? Nidonocu2008-10-13T17:00:50Z2008-10-13T17:00:50Z<p>Another thing you can do is animate the contents and set the Grid to autosize to content which it will do smoothly as the contents changes size.</p>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/198531#1985310Answer by Jobi Joy for In WPF, has anybody animated a Grid? Jobi Joy2008-10-13T18:27:39Z2008-10-13T18:27:39Z<p>You can also achieve this with GridLength animation , see an example here <a href="http://marlongrech.wordpress.com/2007/08/20/gridlength-animation/" rel="nofollow">http://marlongrech.wordpress.com/2007/08/20/gridlength-animation/</a> Using this approach you can manipulate any given Grid.Column or Grid.Row size. </p>
<p>For your special need just put first column with Width="Auto" and second with *, animate the with of the content inside the first column- that will do the trick.</p>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/198841#1988410Answer by Ed Ball for In WPF, has anybody animated a Grid? Ed Ball2008-10-13T20:04:38Z2008-10-13T20:04:38Z<p>You might look at Dan Crevier's <a href="http://blogs.msdn.com/dancre/archive/2006/02/23/537966.aspx" rel="nofollow">PanelLayoutAnimator</a>.</p>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/204173#2041730Answer by Nir for In WPF, has anybody animated a Grid? Nir2008-10-15T09:39:21Z2008-10-15T09:39:21Z<p>You can also use the Reveal control from Kevin's bag-o-tricks, <a href="http://j832.com/bagotricks/" rel="nofollow">http://j832.com/bagotricks/</a></p>
http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/208670#2086701Answer by Entrodus for In WPF, has anybody animated a Grid? Entrodus2008-10-16T13:56:25Z2008-10-16T13:56:25Z<p>Check out <a href="http://windowsclient.net/learn/video.aspx?v=70654" rel="nofollow">this</a> video training link, from Todd Miranda that shows you how to animate the height of a grid control.
I think you could easily make it work for your case. </p>