forked from jesulink2514/Xamarin-Galleries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml
15 lines (15 loc) · 825 Bytes
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<ContentPage Title="Xamarin Galleries"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:XamarinGalleries"
x:Class="XamarinGalleries.MainPage">
<StackLayout VerticalOptions="Center">
<Button Text="Two Columns Gallery" Clicked="Handle_Clicked"/>
<Button Text="Three Columns Gallery" Clicked="Handle_Clicked_1"/>
<Button Text="Auto Height Gallery" Clicked="Handle_Clicked_2"/>
<Button Text="Standart Height Gallery" Clicked="Handle_Clicked_3"/>
<Button Text="Vertical Gallery" Clicked="Handle_Clicked_4"/>
<Button Text="Horizontal Gallery" Clicked="Handle_Clicked_5"/>
</StackLayout>
</ContentPage>