Skip to content

Instantly share code, notes, and snippets.

View johnkors's full-sized avatar

John Korsnes johnkors

View GitHub Profile
@johnkors
johnkors / UIButtonCentered
Created May 9, 2011 17:22
En sentrert UIButton i MonoTouch
public UIButton GetCenteredButton()
{
var buttonWidth = 250f;
var center = (window.Frame.Width / 2) - (buttonWidth / 2); //BYTT UT window MED DITT VIEW OM DU ER I EN VIEWCONTROLLER
var position = new RectangleF(center,50f,buttonWidth,100f);
var uiButton = new UIButton(position);
uiButton.BackgroundColor = UIColor.Gray;
var textButtonLabel = new UILabel();
textButtonLabel.Text = "Trykk her";
textButtonLabel.BackgroundColor = UIColor.Red;