I have a Path that must resize to its StackPanel container.
<StackPanel x:Name="TrackSurface">
<Path Fill="AliceBlue"
Stroke="Black" StrokeThickness="1"
Data="{StaticResource TranslateZ}">
</Path>
</StackPanel>
I think about using a transformation bound to the container but don't know how to it actually. Can someone give me hint?