Why can not I align to the center, this my popup?
LookhowitlooksinXAMLDesign
Follow my XAML
:
<Popup x:Name="popup" HorizontalAlignment="Center" VerticalAlignment="Center">
<StackPanel Background="Black" Width="456">
<TextBlock Text="Selecione uma ação:" Name="lblInformaPopup" Margin="10,0" VerticalAlignment="Center" Style="{StaticResource PhoneTextTitle2Style}" />
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" VerticalAlignment="Top">
<Image Name="imgPhone" Source="Assets/Images/telefone.png" Width="70" Height="70" Tap="imgPhone_Tap" />
<Image Name="imgGps" Source="Assets/Images/gps.png" Width="70" Height="70" Tap="imgGps_Tap" Margin="15,0,0,0" />
<Image Name="imgEmail" Source="Assets/Images/email.png" Width="70" Height="70" Margin="15,0,0,0" />
</StackPanel>
</StackPanel>
</Popup>
Suggestions?