上部にスタックパネルがあるグリッドがあります。スタックパネル上の画像をマウスオーバーで大きくするアニメーションを作成しました。
画像がスタックパネルの外側に拡大し、その下にあるものを覆うことができるように、クリッピング領域を取り除くにはどうすればよいですか?
<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>