public override void ViewDidLoad ()
		{
			base.ViewDidLoad ();

			triangleView = new TriangleView (){Frame = UIScreen.MainScreen.Bounds};
			View.AddSubview (triangleView);

//			drawnImageView = new DrawnImageView (){Frame = UIScreen.MainScreen.Bounds};
//			View.AddSubview(drawnImageView);

//			pdfView = new PDFView (){Frame = UIScreen.MainScreen.Bounds};
//			View.AddSubview(pdfView);
		}
Example #2
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            triangleView = new TriangleView()
            {
                Frame = UIScreen.MainScreen.Bounds
            };
            View.AddSubview(triangleView);

//			drawnImageView = new DrawnImageView (){Frame = UIScreen.MainScreen.Bounds};
//			View.AddSubview(drawnImageView);

//			pdfView = new PDFView (){Frame = UIScreen.MainScreen.Bounds};
//			View.AddSubview(pdfView);
        }