I am trying to align the version of a Windows Phone application at the bottom of the page. He places it below (below) in all components. But not to the bottom of my page
<StackPanel> <TextBlock Text="Username:" Margin="12,0,0,0"/> <TextBox Text="{Binding UserName, Mode=TwoWay}" c4f:TextBinding.UpdateSourceOnChange="True" InputScope="EmailUserName" /> <TextBlock Text="Password:" Margin="12,0,0,0"/> <PasswordBox Password="{Binding Password, Mode=TwoWay}" c4f:TextBinding.UpdateSourceOnChange="True" /> <Button Content="Next" IsEnabled="{Binding CanMoveNext}" Command="{Binding LoginCommand}"/> <TextBlock Text="{Binding ConnectionError}" TextWrapping="Wrap" FontSize="{StaticResource TitleSize}"></TextBlock> <TextBlock Text="{Binding VersionNumber}" Height="450" Padding="3" TextWrapping="Wrap" VerticalAlignment="Bottom" HorizontalAlignment="Center" FontSize="15"></TextBlock> </StackPanel>
I want this to be at the bottom of the page.
source share