In WPF, has anybody animated a Grid? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:07:44Z http://stackoverflow.com/feeds/question/197855 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid 3 In WPF, has anybody animated a Grid? Scott 2008-10-13T14:55:42Z 2008-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#197935 4 Answer by Will for In WPF, has anybody animated a Grid? Will 2008-10-13T15:13:27Z 2008-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>&lt;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"&gt; &lt;StackPanel Margin="20"&gt; &lt;Grid Name="MyGrid" Width="200" HorizontalAlignment="Left"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="100"/&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="*"/&gt; &lt;ColumnDefinition Width="100"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="0" Fill="Red"/&gt; &lt;Rectangle HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="1" Fill="Blue"/&gt; &lt;/Grid&gt; &lt;Button Name="hideButton"&gt; Hide &lt;Button.Triggers&gt; &lt;EventTrigger RoutedEvent="Button.Click"&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Storyboard.TargetName="MyGrid" Storyboard.TargetProperty="(Grid.Width)" From="200" To="100" Duration="0:0:2" AutoReverse="True" /&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger&gt; &lt;/Button.Triggers&gt; &lt;/Button&gt; &lt;/StackPanel&gt; &lt;/Page&gt; </code></pre> http://stackoverflow.com/questions/197855/in-wpf-has-anybody-animated-a-grid/198278#198278 1 Answer by Nidonocu for In WPF, has anybody animated a Grid? Nidonocu 2008-10-13T17:00:50Z 2008-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#198531 0 Answer by Jobi Joy for In WPF, has anybody animated a Grid? Jobi Joy 2008-10-13T18:27:39Z 2008-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#198841 0 Answer by Ed Ball for In WPF, has anybody animated a Grid? Ed Ball 2008-10-13T20:04:38Z 2008-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#204173 0 Answer by Nir for In WPF, has anybody animated a Grid? Nir 2008-10-15T09:39:21Z 2008-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#208670 1 Answer by Entrodus for In WPF, has anybody animated a Grid? Entrodus 2008-10-16T13:56:25Z 2008-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>