Skip to content
Permalink
7bb61d07cd
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
59 lines (53 sloc) 2.25 KB
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Local.ImageView">
<ContentPage.Content>
<Grid RowSpacing="5" ColumnSpacing="5" BackgroundColor="White">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Image Source="myNoteIcon.jpg"
Grid.Row="0"
Grid.Column="0"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="NoteImageButton"/>
</Image.GestureRecognizers>
</Image>
<Image Source="cameraIcon.jpg"
Grid.Row="0"
Grid.Column="1"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="CameraImageButton"/>
</Image.GestureRecognizers>
</Image>
<Image Source="aboutMeIcon.jpg"
Grid.Row="1"
Grid.Column="0"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="AboutTheCreator"/>
</Image.GestureRecognizers>
</Image>
<Image Source="ButtonView.jpg"
Grid.Row="1"
Grid.Column="1"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="ButtonView"/>
</Image.GestureRecognizers>
</Image>
</Grid>
</ContentPage.Content>
</ContentPage>