If I have this:
<Page ux:Class="SplashScreen">
<AlfaPro ux:Name="alfaProIcon" Opacity="1" X="50%" Y="200" Alignment="Center" />
</Page>
Where AlfaPro is a Class that displays an icon:
<Panel ux:Class="Icon" Width="80" Height="80" TransformOrigin="Center">
<Image Source="{Resource iconFile}" Width="60%" Height="60%"/>
<Circle>
<Stroke Brush="#fff" Width="3"/>
</Circle>
</Panel>
and
<Icon ux:Class="AlfaPro">
<FileImageSource File="../assets/taxi.png" ux:Key="iconFile"/>
</Icon>
If I render this, it looks, intersting =)
What is going on here? Why is it placed in the lower right?