Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MainPage.xaml « WindowsStoreApp8 « Rx « Test « NET « Rx - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3af0fe7035fd146422cde2f624f0591e76267ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Page
    x:Class="WindowsStoreApp8.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WindowsStoreApp8"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
        <Button x:Name="button1" Content="Run tests" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="148" Click="button1_Click" FontSize="24"/>
        <TextBox x:Name="textBox1" HorizontalAlignment="Left" Height="44" Margin="187,16,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="248"/>
        <TextBlock x:Name="label1" Text="(Results)" HorizontalAlignment="Left" Margin="10,85,0,0" VerticalAlignment="Top" FontSize="24"/>
    </Grid>
</Page>