public override void ViewDidLoad() { base.ViewDidLoad(); View.BackgroundColor = UIColor.White; float statusBarHeight = UIDevice.CurrentDevice.CheckSystemVersion(7, 0) ? UIApplication.SharedApplication.StatusBarFrame.Height : 0f; button = new GlossyButton(new RectangleF(30, 30 + statusBarHeight, 130, 38)); button.SetTitle("Stop!", UIControlState.Normal); button.Tapped += (obj) => { new UIAlertView("Tapped", "Button tapped", null, "OK", null).Show(); }; View.AddSubview(button); text = new UITextView(new RectangleF(10, 100 + statusBarHeight, 300, 300 - statusBarHeight)); text.Font = UIFont.SystemFontOfSize(14f); text.Editable = false; text.Text = "PaintCode GlossyButton Example\n\n" + "After the button is drawn in PaintCode then added to a UIButton subclass " + "Draw() method override, some color/style properties are tweaked in code " + "to create the TouchDown effect.\n\n" + "The button is sized exactly so that the 'built-in' UIButton.Title " + "is displayed in the center of the PaintCode-generated design."; View.AddSubview(text); }
public override void ViewDidLoad () { base.ViewDidLoad (); View.BackgroundColor = UIColor.White; float statusBarHeight = float.Parse(UIDevice.CurrentDevice.SystemVersion) >= 7 ? UIApplication.SharedApplication.StatusBarFrame.Height : 0f; button = new GlossyButton (new RectangleF (30, 30 + statusBarHeight, 130, 38)); button.SetTitle ("Stop!", UIControlState.Normal); button.Tapped += (obj) => { new UIAlertView ("Tapped", "Button tapped", null, "OK", null).Show (); }; View.AddSubview (button); text = new UITextView (new RectangleF (10, 100 + statusBarHeight , 300, 300 - statusBarHeight)); text.Font = UIFont.SystemFontOfSize (14f); text.Editable = false; text.Text = "PaintCode GlossyButton Example\n\n" +"After the button is drawn in PaintCode then added to a UIButton subclass " +"Draw() method override, some color/style properties are tweaked in code " +"to create the TouchDown effect.\n\n" +"The button is sized exactly so that the 'built-in' UIButton.Title " +"is displayed in the center of the PaintCode-generated design."; View.AddSubview (text); }