document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4.              x:Class="HelloXamarin.MainPage">
  5.  
  6.     <StackLayout>
  7.         <Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
  8.             <Label Text="You clicked 0 times." x:Name="label" HorizontalTextAlignment="Center" TextColor="White" FontSize="24"/>
  9.         </Frame>
  10.         <Label Text="Hello World!" FontSize="Title" Padding="30,10,30,10"/>
  11.         <Label Text="Click the button below to see something cool. Give it a try!" FontSize="16" Padding="30,0,30,0"/>
  12.         <Button Text="Click Me" Clicked="Handle_Clicked" Margin="30,10,30,0"/>
  13.     </StackLayout>
  14.  
  15. </ContentPage>
');