Xamarin.Forms Hello sample
XamarinFormsHello/XamarinFormsHello/App.cs
public class App : Application
{
    public App()
    {
        // The root page of your application
        MainPage = new ContentPage
        {
            Content = new StackLayout
            {
                VerticalOptions = LayoutOptions.Center,
                Children = {
                    new Label {
                        HorizontalTextAlignment = TextAlignment.Center,
                        Text = "Hello Hello\nHello"
                    },
                    new Label {
                        HorizontalTextAlignment = TextAlignment.Start,
                        Text = "Xamarin\nWorld"
                    },
                    new Label {
                        HorizontalTextAlignment = TextAlignment.End,
                        Text = "with\nVisual Studio"
                    },
                }
            }
        };
    }
    ....
