• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<Page
2    x:Class="OcvImageProcessing.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:OcvImageProcessing"
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
10    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
11        <Image x:Name="PreviewWidget" HorizontalAlignment="Left" Height="512" Margin="10,10,0,0" VerticalAlignment="Top" Width="512"/>
12        <Button Content="Apply" HorizontalAlignment="Left" Margin="527,71,0,0" VerticalAlignment="Top" Width="293" Height="63" Click="Button_Click"/>
13        <ComboBox x:Name="FilterTypeWidget" HorizontalAlignment="Left" Margin="527,10,0,0" VerticalAlignment="Top" Width="293" Height="56" SelectedIndex="0">
14            <ComboBoxItem Content="Preview"/>
15            <ComboBoxItem Content="GrayScale"/>
16            <ComboBoxItem Content="Canny"/>
17            <ComboBoxItem Content="Blur"/>
18            <ComboBoxItem Content="Features"/>
19            <ComboBoxItem Content="Sepia"/>
20        </ComboBox>
21
22    </Grid>
23</Page>
24