summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27417Xaml.xaml
blob: ab652b3040bc11ae8ee62d45851b52152f4dcb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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="Xamarin.Forms.Controls.Issues.Bugzilla27417Xaml">
  <StackLayout Spacing="10">

    <Button BackgroundColor="Color.Gray" Text="Click Me"></Button>
    <Button BackgroundColor="Color.Gray" Image="coffee.png"></Button>
    <Button BackgroundColor="Color.Gray" Image="coffee.png" Text="Click Me"></Button>
    <Button BackgroundColor="Color.Gray" Image="coffee.png" Text="Click Me" ContentLayout="Top,10"></Button>
    <Button BackgroundColor="Color.Gray" Image="coffee.png" Text="Click Me" ContentLayout="Bottom,10"></Button>
    <Button BackgroundColor="Color.Gray" Image="coffee.png" Text="Click Me" ContentLayout="Right"></Button>
    
  </StackLayout>
</ContentPage>