wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Page
2 x:Class="MetroSQLiteClientTest2.MainPage"
3 IsTabStop="false"
4 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
6 xmlns:local="using:MetroSQLiteClientTest2"
7 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
8 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
9 mc:Ignorable="d">
10  
11 <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
12 <Grid.RowDefinitions>
13 <RowDefinition Height="140"/>
14 <RowDefinition Height="*"/>
15 </Grid.RowDefinitions>
16  
17 <!-- Back button and page title -->
18 <Grid>
19 <Grid.ColumnDefinitions>
20 <ColumnDefinition Width="120"/>
21 <ColumnDefinition Width="*"/>
22 </Grid.ColumnDefinitions>
23 <StackPanel Grid.Column="1" Orientation="Horizontal">
24 <ComboBox x:Name="_testComboBox" Width="340" VerticalAlignment="Bottom" Margin="0,0,0,40">
25 </ComboBox>
26 <Button x:Name="_runButton" Content="Run" VerticalAlignment="Bottom" Margin="20,0,0,40" Width="75" Click="Button_Click_1"/>
27 </StackPanel>
28 </Grid>
29 <ScrollViewer Grid.Row="1" Margin="120,0,0,0">
30 <StackPanel x:Name="_resultsStackPanel" />
31 </ScrollViewer>
32  
33 </Grid>
34 </Page>