/// <summary>
/// Dismisses the keyboard by calling ResignFirstResponder
/// </summary>
protected bool DismissKeyboard (UITextField textBox)
{
  textBox.ResignFirstResponder ();
  return true;
}