I am attempting to place a videobrush in my application, although I've noticed that in portrait mode the aspect ratio is different than in landscape mode. How would I adjust this so that the videorbush remains in its default aspect ratio regardless of the rotation of the phone?
MainPage.xaml
<Rectangle x:Name="videoRectangle" Grid.Row="0" Grid.ColumnSpan="2" >
<Rectangle.Fill>
<VideoBrush x:Name="viewfinderBrush">
<VideoBrush.RelativeTransform>
<!--<CompositeTransform x:Name="viewfinderBrushTransform" CenterX=".5" CenterY=".5" Rotation="90" />-->
<CompositeTransform x:Name="viewfinderBrushTransform" CenterX=".5" CenterY=".5" />
</VideoBrush.RelativeTransform>
</VideoBrush>
</Rectangle.Fill>
</Rectangle>
MainPage.xaml.cs
..do adjustments in code behind?
To note, I have set SupportedOrientations="Portrait"