1 <Page x:Class="HomePage"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:dialogs="clr-namespace:Microsoft.Win32;assembly=PresentationFramework"
9 <Grid.ColumnDefinitions>
11 </Grid.ColumnDefinitions>
13 <RowDefinition Height="Auto" />
14 <RowDefinition Height="Auto" />
15 <RowDefinition Height="Auto" />
16 </Grid.RowDefinitions>
18 <Button Name="uploadButton" Grid.Column="0" Grid.Row="0" Click="uploadButton_Click" Width="100" Margin="10,10,10,0" Padding="3,3,3,3">Upload Image...</Button>
19 <Image Name="viewImage" Grid.Column="0" Grid.Row="1" Width="500" Height="300" Margin="10,10,10,10"></Image>
20 <Label Name="nameLabel" Grid.Column="0" Grid.Row="2" HorizontalContentAlignment="Center" FontSize="15"></Label>