MainPage.xaml 898 B

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