public override void ViewDidLoad()
        {
            Title = "Innstillinger";

            View.BackgroundColor = UIColor.Black;

            int spacing = 10;

            int gridHight  = 25;
            int labelWidth = 100;

            int fieldWidth = 320 - spacing * 3 - labelWidth;

            float xPos = spacing;
            float yPos = spacing;



            UILabel userNameLabel = new UILabel();

            userNameLabel.Text            = "Brukernavn:";
            userNameLabel.BackgroundColor = UIColor.Black;
            userNameLabel.TextColor       = UIColor.White;
            userNameLabel.Frame           = new RectangleF(xPos, yPos, labelWidth, gridHight);
            View.AddSubview(userNameLabel);

            yPos += spacing + gridHight;

            UILabel PasswordLabel = new UILabel();

            PasswordLabel.Text            = "Passord:";
            PasswordLabel.BackgroundColor = UIColor.Black;
            PasswordLabel.TextColor       = UIColor.White;
            PasswordLabel.Frame           = new RectangleF(xPos, yPos, labelWidth, gridHight);
            View.AddSubview(PasswordLabel);

            xPos += spacing + labelWidth;
            yPos  = spacing;

            userNameField                        = new UITextField(new RectangleF(xPos, yPos, fieldWidth, gridHight));
            userNameField.BorderStyle            = UITextBorderStyle.RoundedRect;
            userNameField.AutocorrectionType     = UITextAutocorrectionType.No;
            userNameField.KeyboardType           = UIKeyboardType.EmailAddress;
            userNameField.AutocapitalizationType = UITextAutocapitalizationType.None;
            userNameField.Placeholder            = "Brukernavn";
            userNameField.Text                   = GymSettingsDataSource.UserName;
            userNameField.ShouldReturn           = delegate(UITextField textField) {
                return(textField.ResignFirstResponder());
            };

            View.Add(userNameField);

            yPos += spacing + gridHight;

            passwordField                    = new UITextField(new RectangleF(xPos, yPos, fieldWidth, gridHight));
            passwordField.BorderStyle        = UITextBorderStyle.RoundedRect;
            passwordField.AutocorrectionType = UITextAutocorrectionType.No;
            passwordField.SecureTextEntry    = true;
            passwordField.Placeholder        = "Passord";
            passwordField.Text               = GymSettingsDataSource.Password;
            passwordField.ShouldReturn       = delegate(UITextField textField) {
                return(textField.ResignFirstResponder());
            };



            View.Add(passwordField);

            yPos += spacing + gridHight;

            UILabel myGymsLabel = new UILabel(new RectangleF(0, yPos, View.Frame.Width, 30));

            myGymsLabel.Text            = "Mine 3T-sentre";
            myGymsLabel.BackgroundColor = UIColor.Black;
            myGymsLabel.TextColor       = UIColor.White;
            myGymsLabel.TextAlignment   = UITextAlignment.Center;
            myGymsLabel.Font            = UIFont.SystemFontOfSize(25);
            View.Add(myGymsLabel);

            yPos += spacing + myGymsLabel.Frame.Height;


            gymsTableViewController            = new GymsTableViewController();
            gymsTableViewController.View.Frame = new RectangleF(0, yPos, View.Frame.Width, View.Frame.Height - 70);
            View.AddSubview(gymsTableViewController.View);
        }
        public override void ViewDidLoad()
        {
            Title = "Innstillinger";

            View.BackgroundColor = UIColor.Black ;

            int spacing = 10;

            int gridHight = 25;
            int labelWidth = 100;

            int fieldWidth = 320 - spacing * 3 - labelWidth;

            float xPos = spacing;
            float yPos = spacing;

            UILabel userNameLabel = new UILabel();
            userNameLabel.Text = "Brukernavn:";
            userNameLabel.BackgroundColor = UIColor.Black;
            userNameLabel.TextColor = UIColor.White;
            userNameLabel.Frame = new RectangleF(xPos,yPos,labelWidth,gridHight);
            View.AddSubview( userNameLabel );

            yPos += spacing + gridHight;

            UILabel PasswordLabel = new UILabel();
            PasswordLabel.Text = "Passord:";
            PasswordLabel.BackgroundColor = UIColor.Black;
            PasswordLabel.TextColor = UIColor.White;
            PasswordLabel.Frame = new RectangleF(xPos,yPos,labelWidth,gridHight);
            View.AddSubview( PasswordLabel );

            xPos += spacing + labelWidth;
            yPos = spacing;

            userNameField = new UITextField( new RectangleF(xPos,yPos,fieldWidth,gridHight) );
            userNameField.BorderStyle = UITextBorderStyle.RoundedRect;
            userNameField.AutocorrectionType = UITextAutocorrectionType.No;
            userNameField.KeyboardType = UIKeyboardType.EmailAddress;
            userNameField.AutocapitalizationType = UITextAutocapitalizationType.None;
            userNameField.Placeholder = "Brukernavn";
            userNameField.Text = GymSettingsDataSource.UserName;
            userNameField.ShouldReturn = delegate ( UITextField textField ) {
                 return textField.ResignFirstResponder();
            };

            View.Add( userNameField );

            yPos += spacing + gridHight;

            passwordField = new UITextField( new RectangleF(xPos,yPos,fieldWidth,gridHight) );
            passwordField.BorderStyle = UITextBorderStyle.RoundedRect;
            passwordField.AutocorrectionType = UITextAutocorrectionType.No;
            passwordField.SecureTextEntry = true;
            passwordField.Placeholder = "Passord";
            passwordField.Text = GymSettingsDataSource.Password;
            passwordField.ShouldReturn = delegate ( UITextField textField ) {
                 return textField.ResignFirstResponder();
            };

            View.Add( passwordField );

            yPos += spacing + gridHight;

            UILabel myGymsLabel = new UILabel( new RectangleF (0,yPos, View.Frame.Width, 30));
            myGymsLabel.Text = "Mine 3T-sentre";
            myGymsLabel.BackgroundColor = UIColor.Black;
            myGymsLabel.TextColor = UIColor.White;
            myGymsLabel.TextAlignment = UITextAlignment.Center;
            myGymsLabel.Font = UIFont.SystemFontOfSize(25);
            View.Add( myGymsLabel );

            yPos += spacing + myGymsLabel.Frame.Height;

            gymsTableViewController = new GymsTableViewController();
            gymsTableViewController.View.Frame = new RectangleF(0,yPos, View.Frame.Width,View.Frame.Height-70);
            View.AddSubview( gymsTableViewController.View );
        }