MainPage.xaml 954 B

123456789101112131415
  1. <Page
  2. x:Class="WindowsStoreApp8_NuGet.MainPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:WindowsStoreApp8_NuGet"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9. <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
  10. <Button x:Name="button1" Content="Run tests" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="148" Click="button1_Click" FontSize="24"/>
  11. <TextBox x:Name="textBox1" HorizontalAlignment="Left" Height="44" Margin="187,16,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="248"/>
  12. <TextBlock x:Name="label1" Text="(Results)" HorizontalAlignment="Left" Margin="10,85,0,0" VerticalAlignment="Top" FontSize="24"/>
  13. </Grid>
  14. </Page>