void ReleaseDesignerOutlets()
 {
     if (AboutButton != null)
     {
         AboutButton.Dispose();
         AboutButton = null;
     }
     if (IPTextField != null)
     {
         IPTextField.Dispose();
         IPTextField = null;
     }
     if (PortTextField != null)
     {
         PortTextField.Dispose();
         PortTextField = null;
     }
     if (RegisterButton != null)
     {
         RegisterButton.Dispose();
         RegisterButton = null;
     }
     if (ResetButton != null)
     {
         ResetButton.Dispose();
         ResetButton = null;
     }
     if (SettingsInfoText != null)
     {
         SettingsInfoText.Dispose();
         SettingsInfoText = null;
     }
     if (TimeoutSlider != null)
     {
         TimeoutSlider.Dispose();
         TimeoutSlider = null;
     }
 }
Exemplo n.º 2
0
 partial void IPTextFieldClicked(UITextField sender)
 {
     IPTextField.BecomeFirstResponder();
 }