Hi,
I have a grid, with a stackpanel on the top. I have built a mouse over animation that makes images on the stack panel bigger on the mouse over.
How do I take away the clipping region(s) so that the images can grow outside of the stackpanel and cover what is under them?
<Grid x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100" x:Name="pagesColumn"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Width="Auto" Grid.ColumnSpan="2" Grid.Row="0" VerticalAlignment="Top" Height="30" Background="Red" >
</StackPanel>