WPBButton CreateButton(string title, UIColor color, float yPos)
        {
            WPBButton button = new WPBButton(title, color, yPos);

            button.CenterHorizontally();
            View.AddSubview(button);
            return(button);
        }
 WPBButton CreateButton(string title, UIColor color, float yPos)
 {
     WPBButton button = new WPBButton (title, color, yPos);
     button.CenterHorizontally ();
     View.AddSubview (button);
     return button;
 }