Page1.xaml 879 B

1234567891011121314
  1. <Page x:Class="WpfXbapApp45_NuGet.Page1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. d:DesignHeight="300" d:DesignWidth="300"
  8. Title="Page1">
  9. <Grid>
  10. <Button x:Name="button1" Content="Run tests" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="75" Click="button1_Click"/>
  11. <TextBox x:Name="textBox1" HorizontalAlignment="Left" Height="23" Margin="99,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
  12. <TextBlock x:Name="label1" Text="(Results)" HorizontalAlignment="Left" Margin="10,45,0,0" VerticalAlignment="Top"/>
  13. </Grid>
  14. </Page>