Hi all,
MaintainAspectRatio works in my situration.
I have a colorfill to stretch photos to full screen, without changing the aspact ratio of photo when clients use16:9 LCD TV.
You can try using
SizingPolicy instead of scale layout.
<Content>
<ColorFill Content="Transparent" Layout="Center">
<Children>
<ColorFill Name=" ImageColorFill" Content="Black" Margins="10,0,0,0">
<!-- add Scale workaround for 16:9-->
<Children>
<Graphic Name="Display" Content="[loading]" MaintainAspectRatio="true" SizingPolicy="SizeToConstraint" />
</Children>
</ColorFill>
</Children>
</ColorFill>
</Content>