Hi everyone,
I'm trying some Windows Phone development and created a small user control. (clock)
Problem is that I would like all the subcontrols resize/move to the correct relative position when setting the widht/height of the usercontrol itself.
Below is some sample XAML which draws the circles and the number 12 at the top but I can't seem to manage that the circles/text get moved to the correct location when changing the widht/height.
I searched various articles but there doesn't seem to be one that fits my needs. :-/
How can this be achieved?
d:DesignHeight="260" d:DesignWidth="260"><Grid x:Name="LayoutRoot" ><Ellipse x:Name="OuterCircle" Margin="0,0,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Height="260" Width="260"><Ellipse.Fill><LinearGradientBrush><GradientStop Color="#FFF9F9FD" Offset="0"/><GradientStop Color="#FFB4554C" Offset="1"/></LinearGradientBrush></Ellipse.Fill></Ellipse><Ellipse x:Name="BorderCircle" Margin="10,10,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Height="240" Width="240" Fill="#FFB4554C"/><Ellipse x:Name="InnerCircle" Margin="15,15,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Height="230" Width="230" Tap="Control_Tapped"><Ellipse.Fill><LinearGradientBrush EndPoint="0.5,1" MappingMode="RelativeToBoundingBox" StartPoint="0.5,0"><GradientStop Color="#FFF9F9FD" Offset="0"/><GradientStop Color="White" Offset="1"/><GradientStop Color="White"/></LinearGradientBrush></Ellipse.Fill></Ellipse><TextBlock x:Name="Label12" Text="12" Margin="113,16,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Style="{StaticResource ClockBigNumberStyle}" Tap="Control_Tapped"/></Grid>