public App()
 {
     drawView = new DrawView {
         VerticalOptions   = LayoutOptions.FillAndExpand,
         HorizontalOptions = LayoutOptions.FillAndExpand,
         BackgroundColor   = Color.White,
         DrawColor         = Color.Red
     };
     // The root page of your application
     MainPage = new ContentPage {
         Content = drawView
     };
 }
		public App ()
		{
			drawView = new DrawView {
				VerticalOptions = LayoutOptions.FillAndExpand,
				HorizontalOptions = LayoutOptions.FillAndExpand,
				BackgroundColor = Color.White,
				DrawColor = Color.Red
			};
			// The root page of your application
			MainPage = new ContentPage {
				Content = drawView
			};
		}