~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/samples/winrt_universal/PhoneTutorial/MainPage.xaml

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Page
 
2
    x:Class="PhoneTutorial.MainPage"
 
3
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 
4
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 
5
    xmlns:local="using:PhoneTutorial"
 
6
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 
7
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 
8
    mc:Ignorable="d"
 
9
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
 
10
        <Grid>
 
11
        <StackPanel>
 
12
            <Image x:Name="image" />
 
13
            <Button x:Name="Process" Content="Process" HorizontalAlignment="Center" Click="Process_Click"/>
 
14
            <Button x:Name="Reset" Content="Reset" HorizontalAlignment="Center" Click="Reset_Click"/>
 
15
        </StackPanel>
 
16
    </Grid>
 
17
</Page>