public static void UpdateFromFormsControl (this UILabel uiLabel, string text, TextAlignment textAlignment, Color textColor, Font font)
		{
			uiLabel.Text = text;
			uiLabel.TextAlignment = textAlignment.ToUITextAlignment ();
			uiLabel.TextColor = textColor.ToUIColor ();
			uiLabel.Font = font.ToUIFont ();
		}
 public static void UpdateFromFormsControl(this UILabel uiLabel, string text, TextAlignment textAlignment, Color textColor, Font font)
 {
     uiLabel.Text          = text;
     uiLabel.TextAlignment = textAlignment.ToUITextAlignment();
     uiLabel.TextColor     = textColor.ToUIColor();
     uiLabel.Font          = font.ToUIFont();
 }