Mercurial > silverbladetech
diff SilverlightGlimpse/SilverlightGlimpse.Test/MainPage.xaml @ 62:810116cd6b8e
ErrorWindow working
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 22 Apr 2012 09:01:20 +0100 |
parents | |
children | 536498832a79 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightGlimpse/SilverlightGlimpse.Test/MainPage.xaml Sun Apr 22 09:01:20 2012 +0100 @@ -0,0 +1,30 @@ +<UserControl x:Class="SilverlightGlimpse.Test.MainPage" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + d:DesignHeight="300" + d:DesignWidth="400" + mc:Ignorable="d"> + + <Grid x:Name="LayoutRoot" Background="White"> + <Grid.RowDefinitions> + <RowDefinition Height="100" /> + </Grid.RowDefinitions> + + <Button Width="150" + Height="60" + Click="Button_Click" + Content="Open form" /> + <ListBox x:Name="Listbox1" Grid.Row="1"> + <ListBox.ItemTemplate> + <DataTemplate> + <StackPanel> + <TextBlock Text="{Binding Id }" /> + <TextBlock Text="{Binding FAIL}" /> + </StackPanel> + </DataTemplate> + </ListBox.ItemTemplate> + </ListBox> + </Grid> +</UserControl>